2.0 ~ 2.7function sayHello(name, age){console.log('Hello!', name, " you have ", age, " years of age.");}sayHello("Nicolas", 15);name과 age는 argument(인자)이다string 표현시 ' ' , " " , ` ` (백틱이라고 부름)을 사용function sayHello(name, age){console.log(`Hello ${name} you are ${age} years old`);}sayHello("Nicolas", 15);백틱을 사용한 방식이 훨씬 깔끔하고 편함------------------------function sayHello(name, age){return `Hello ${name} you are ${age} years old`;}const greetNicolas..........