63.5k views
9 votes
Since JavaScript is case sensitive, one of the variables below needs to be

fixed: *
O var isGood = true
var isGood = "true"
O var isGood = false
var is Good = FALSE
,,, can someone answer the bottom one lol?

Since JavaScript is case sensitive, one of the variables below needs to be fixed: * O-example-1
User Lateisha
by
4.9k points

1 Answer

9 votes

Answer:

var is Good = FALSE needs to be fixed

bottom answer is method.

Step-by-step explanation:

var is Good = FALSE because you are assigning a boolean and in js booleans are all lower case.

Functions that are stored in object properties are called “methods”

User Kelly Goedert
by
5.7k points