Programming Quiz Channel
Kanalga Telegram’da o‘tish
Programming quizzes and knowledge tests Short quizzes on programming, logic and computer science. Test and improve your coding knowledge. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
Ko'proq ko'rsatish780
Obunachilar
-124 soatlar
+37 kunlar
+1730 kunlar
Postlar arxiv
What will this code output? Spot the bug.
Difficulty: Hard😤
for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(i);
}, 1000);
}What will this code output?
Difficulty: Average😐
let x = 0.1 + 0.2;
let y = 0.3;
if (x === y) {
console.log("Values are equal");
} else {
console.log("Values are not equal");
}Find the error in the code.
Difficulty: Easy🙂
let user = {
name: "John"
age: 30,
isAdmin: true
};
console.log("User's name is: " + user.name);Which of the following keywords is not used to declare a variable in JavaScript?
