화살표함수에서의 {}사용

코드깎는 노인·2020년 5월 3일
0

javascript

목록 보기
8/8
const getInit = () => axios.get("http://127.0.0.1:8080/ticket/screens");
const getInit = () => (axios.get("http://127.0.0.1:8080/ticket/screens"));

화살표함수에서 화살표다음값이나 소괄호로 싸인 부분이 리턴된다

const getInit = () => {axios.get("http://127.0.0.1:8080/ticket/screens")};
const getInit = () => {return axios.get("http://127.0.0.1:8080/ticket/screens")};

중괄호로 감쌀경우 return을 붙여주지 않으면 리턴값이 없다.

profile
내가 볼려고 만든 블로그

0개의 댓글