function sayHello(name, age){
return `Hello ${name} you are ${age} years old.`;
}
const greetNicolas = sayHello("Nicolas", 15)
console.log(greetNicolas)
function sayHello(name, age){
console.log(`Hello ${name} you are ${age} years old.`);
}
sayHello("Yunmi", 15);
console.log("Hi")
"hello", name, "you are"
"hello"+name+"you are"
대신
`hello ${name}`
function sayHello(name, age){
console.log(`Hello ${name} you are ${age} years old.`);
}
sayHello("Nicolas", 15);
const calculator = {
plus:function(a, b){
return a+b;
},
minus:function(a,b){
return a-b;
},
multiple:function(a,b){
return a*b;
},
divide:function(a,b){
if(b!=0)
return a/b;
else
return "cannot divide by zero"
},
power:function(a,b){
return a**b;
}
};
console.log(calculator.plus(5,5));
'JS > learned_it_today' 카테고리의 다른 글
<select> 기본 스타일 없애고 내가 원하는 스타일 넣기 (0) | 2020.08.19 |
---|---|
JS에서 동적으로 생성한 태그에 클래스 만들어주기! (0) | 2020.05.24 |
객체 - Property and Method (0) | 2020.05.19 |
객체 - 반복문과 객체 (0) | 2020.05.19 |
객체 - 쓰기와 읽기 (0) | 2020.05.19 |