Predict the output of the following code: 

let result = 1; 
for (let i = 2; i <=3; i++) { 
	for (let j = 2; j <= 3; j++) { 
		if (i === 2 && j === 3) { 
			continue; 
		} 
		result += i + j; 
	} 
} 
console.log(result);

15

16

SyntaxError

21

Verified Answer
Correct Option - b

To get all Infosys Certified JavaScript Professional Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram