티스토리 뷰

함수란 ?

함수(function)란 하나의 특별한 목적의 작업을 수행하기 위해 독립적으로 설계된 코드의 집합으로 정의할 수 있습니다.

 

대표적인 내장 함수 (console.log)

console.log(console)한 결과. 이 때 console은 Object이고, log는 함수이다. 

t {
  log: [Function],
  error: [Function],
  info: [Function],
  warn: [Function],
  dir: [Function],
  time: [Function],
  timeEnd: [Function],
trace: [Function],
  assert: [Function],
  clear: [Function],
  stdout: { [Function] clear: [Function] },
 _times: {} ...
}

함수 호출하기

function sayHello(name, age) {
  return `Hello ${name} you are ${age} years old`;
}
const gereeting = sayHello("park", 30);
console.log(gereeting); // Hello park you are 30 years old

'노마드코더 > Vanilla JS' 카테고리의 다른 글

#2-3 Modifying the DOM with JS  (0) 2021.08.28
#2-2 JS DOM Functions  (0) 2021.08.28
#1-10 Organizing Data with Objects  (0) 2021.08.28
#1-9 Organizing Data with Arrays  (0) 2021.08.28
#1-8 Data Types on JS  (0) 2021.08.22
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함