Aim of the puzzle: Write and run code in a code editor.
Walk through of solution: The code contains a console.log()
statement that prints check
. In this puzzle, you’ll change what’s inside the parentheses of the console.log()
so it prints checkmate
.
To complete this puzzle, change 'check'
to 'checkmate'
.
Sample code solution:
console.log('checkmate')
Javascript Concepts: console.log()
, strings