console.log()
This allows you to print message to the screen
This is displayed at the bottom of the code editor.
This is a great tool for debugging.
for (let value = 1; value <=10; value++)
{
console.log('Current Number is : ' + value);
}
© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited TopPrevNext