Answers for "javascript if eles"

45

javascript if else

var age=20;
if (age < 18) {
	console.log("underage");
} else {
	console.log("let em in!");
}
Posted by: Guest on June-27-2019
0

if condition javascript

if (condition){
// if true then execute this -}
 else{
 // if statment is not true then execut this -
 }
Posted by: Guest on March-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language