JavaScript Beginner Test
Time Elapsed: 0 seconds
1. What is the output of the following code?
console.log(5 + 3 * 2);
2. Which keyword is used to declare a constant in JavaScript?
3. How do you declare a function in JavaScript?
4. What is the output of the following code?
let x = 5;
let y = 10;
console.log(x == y);