Files
JavaScript-from-Beginner-to…/Chapter 01/Exercise_1.4.js
T
2021-11-29 18:38:20 +05:30

8 lines
143 B
JavaScript
Vendored

let a = 10; // assign a value of 10 to variable a
console.log(a); // This will output 10 into the console
/*
This is a multi-line
Comment
*/