๐Ÿ“ฆ Asabeneh / JavaScript-for-Everyone

๐Ÿ“„ 02-comment.js ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15//Commenting in JavaScript
//There is is two way ways of commenting JavaScript:single line and multiline comment

//1.Signle line comment 
// let firstName = "Asabeneh";
// let lastName = "Yetayeh";
// let location = "Helsinki";
//2.Multiple line comment
/*
const country = "Finland";
let age = 100;
let isMarried = true;
const gravity = 9.81;
const PI = 3.14;
*/