자바스크립트 정리(2)

Cullen·2021년 12월 12일
0

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 {
}

동치 연산자(==, ===, !=, !==)와 관계 연산자(>, <, >=, <=)

profile
#프론트엔드 개발자

0개의 댓글