comments in JavaScript, full JavaScript with shots part 4 #js

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

// comments in js

// a non executable code

// used for - readable explanation or annotation in the source code of a computer program.





// 2 types of comment :
// single line and multiline

console.log("hellow, we are learning comments ");//this is a single line comment
/*
multiline comment is
a comment which has
more than 1 lines
*/
console.log("hellow world");


answer of the question :

codingwale
visit shbcf.ru