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가 나올거라 기대된다
'매개변수는 괄호에 들어가며, 쉼표로 각각의 인자를 구분해야 한다.'
'function의 바디는 중괄호로 묶어주며 구성된다'
There is a arrow function. Arrow function has no parameters. Arrow function don't need return keyword.
Parameters are additional information passed to a function.