logo CodeStepByStep logo

boxOfStars

Language/Type: JavaScript parameters console output

Write a function named boxOfStars that accepts two integer parameters representing a width and height in characters, and prints to the console a 'box' figure whose border is * stars and whose center is made of spaces.

For example, the call of boxOfStars(8, 5) should print the following output:

********
*      *
*      *
*      *
********

You may assume that the values passed for the width and height are integer values of at least 2.

Function: Write a JavaScript function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.