This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by saikumar
about 9 years

11/15 [resolved] What's wrong with my code...

var red = [0, 100, 63]; var orange = [40, 100, 60]; var green = [75, 100, 40]; var blue = [196, 77, 55]; var purple = [280, 50, 60];

var myName = “sai”;

bubbleShape=”square”;

drawName(myName, red, orange, green, blue, purple, bubbleShape);

/error: make sure you have declare all the variables/

Answer 54bd407151b88738e0000093

0 votes

Permalink

This is the problem line:

drawName(myName, red, orange, green, blue, purple, bubbleShape);

Is that the same code you used in exercise 10?

points
Submitted by Judy
about 9 years

2 comments

saikumar about 9 years

got it! thanks…

Judy about 9 years

You’re welcome!