JS 3 Flashcards
How can you add a comment in a JavaScript?
<!--This is a comment-->
//This is a comment
‘This is a comment
JavaScript is the same as Java.
True
False
How do you call a function named “myFunction”?
call myFunction()
myFunction()
call function myFunction()
How do you declare a JavaScript variable?
variable carName;
var carName;
v carName;
How do you create a function in JavaScript?
function myFunction()
function = myFunction()
function:myFunction()
How do you round the number 7.25, to the nearest integer?
Math.round(7.25)
rnd(7.25)
round(7.25)
Math.rnd(7.25)
Is JavaScript case-sensitive?
No
Yes
Where is the correct place to insert a JavaScript?
The <body> section
The <head> section
Both the <head> section and the <body> section are correct