0
Please fill in the data types of the data shown below in the comments field:
12 // number "some text" // _____? true // _____????
4 Respuestas
0
Fill in the blanks to print EVEN values from 0 to 20 using a for loop:
var x = 0;
for (; x <=
; x +=
) {
document.write(x);
}
0
string
boolean
- 1
string
boolean
- 1
What's the result of the expression var1&&var2, if var1=true and var2=false?
true
false
undefined