제가 자바스크립트는 다뤄본적이 없는데




res.text().then(text => console.log(text));


여기 then 함수의 파라메터 부분 text => console.log(text);


잘은 모르는데 함수를 축약해서 쓰는거라고 하던데


이게 원래의 함수인건가요??

text(){

console.log(text);

}


아니면 이게 원래의 함수인가요??

function(text){

console.log(text);

}