Module quiz: The Building Blocks of a Program in Javascript
What data type is the variable x ?
var x = {};
Function
Array
Object
What will be the output of running the following code?
try {
console.log('hello)
} catch(e) {
console.log('caught')
}
Uncaught SyntaxError: Invalid or unexpected toke...
eplus.dev2 min read