본문 바로가기
개발공부/노마드코더-바닐라js로 크롬앱만들기

함수

by 모노6 2021. 1. 9.

function sayHello(a, b){

console.log('Hello!', a, "you have", b, "years of age.");

}

 

sayHello("Kim", 27);

 

= Hello! Kim you hav 27 years of age.

'개발공부 > 노마드코더-바닐라js로 크롬앱만들기' 카테고리의 다른 글

DOM  (0) 2021.01.10
Object  (0) 2021.01.07
Array  (0) 2021.01.07
const = constant(상수)  (0) 2021.01.07
변수  (0) 2021.01.07