I'm writing my first javascript code and when I try to run it, I get the following error
"Uncaught SyntaxError: Unexpected token {"
Why is this happening in this case?
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 = "Manuel";
letterColors = [red, orange, green]
If (15 > 5 ){
bubbleShape = "circle"
}
else{
bubbleShape = "square"
}
drawName(myName, letterColors);