javascript 코드인데, t 정체가 뭔지?
본문
<script>
window.addEventListener("message",
t=>{
switch(t.data){
case "scrollTop":$("html, body").animate({scrollTop:$("#iframe").offset().top-100},500)
}
}
);
</script>
위 코드에서 t 는 뭘 의미할까요? 그리고 화살표는 또 뭔지? ㅎ
답변 1
Arrow function 표현이고 t 는 인자입니다.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
답변을 작성하시기 전에 로그인 해주세요.