Functions

차노·2023년 8월 3일
0

JS

목록 보기
15/96

A function is a set of statements that take inputs, do some specific computation, and produce output.

'인풋을 받는 구문의 한 종류라고 생각되고, 특정 run을 통해 아웃풋을 만들어 내는 것이라 정의한다'

다른 인풋들을 계속해서 받아야 할 때 펑션을 활용한다.

myFunctino이라 명명하고 g1, g2이라는 인자를 받아서 '/'라는 연산자를 활용하여 두 인자를 computation하도록 return문을 만들었다.

그리고 value라는 상수를 만들어 각각의 인자에 8과 2라는 인풋을 function_myFunction에 넣어 할당했다.

output은 4가 나올거라 기대된다

Rules

  • Every function should begin with the keyword function followed by.
  • A user-defined function name that should be unique.
  • A list of parameters enclosed within parentheses and separated by commas.

    '매개변수는 괄호에 들어가며, 쉼표로 각각의 인자를 구분해야 한다.'

  • A list of statements composing the body of the function enclosed within curly braces {}.

    'function의 바디는 중괄호로 묶어주며 구성된다'

There is a arrow function. Arrow function has no parameters. Arrow function don't need return keyword.

about parameters

Parameters are additional information passed to a function.

0개의 댓글