JS Coding Questions Logo
JS Coding Questions
#52🎯 Exercise💻 Code

JavaScript Coding Exercise 52

Advertisement

728x90
javascript
1const USER = { age: 30 };
2
3USER.age = 25;
4
5console.log(USER.age);

Choose the correct output:

A
30
B
25
C
Uncaught TypeError
D
SyntaxError

Advertisement

Responsive Ad
51of86