JavaScript Comments code is not executed. it's only for information. In JS two types of comments , Single line and Multi line
Single line comments starting with two forward slashes (//).
//checking alert alert('test'); var x=10; // Single line comments in JavaScript
/* This is a multi line comment example in JavaScript */ alert('test');