Easy
What's the problem with this code?
const student = "INSA";
if (student === "INSA")
{
let certificate = true;
console.log('In this block, student='+student+'; certificate='+certificate);
}
console.log('In this block: student ='+student+'certificate='+certificate);
Edit
10
Community Evaluations
Similar QuestionsMore questions about Javascript
61
Understanding the differences between `map()` and `forEach()` methods in JavaScript28
Write a JavaScript function that fetches data from an API and logs it to the console.19
Fix the following Javascript loop:9
Use spread operator to split an array into two arrays in Javascript6
What can be said about ECMAScript?