alert();
console.log()
//
let 변수 = 값
function add() {
return
}
예제
function addTen(num) {
return num+10;
}
let num=addTen(9)
console.log(num)
=19
if () {
return ddd;
} else if () {
return ddd;
} else {
}
동치 연산자(==, ===, !=, !==)와 관계 연산자(>, <, >=, <=)