본문 바로가기
Engineering WIKI/Js

[Js] IE Default Error

by wonos 2020. 4. 5.

호환성 문제로 파라미터 기본값 에러 날 시 (Explorer)

function foo(a, b) {
  a = typeof a !== 'undefined' ? a : 'null';
  b = typeof b !== 'undefined' ? b : 'null';
  ...
}

'Engineering WIKI > Js' 카테고리의 다른 글

[JS] 자바스크립트 ES6  (0) 2021.06.15
[JS] FormData  (0) 2020.11.29
[JS] formData를 console.log 출력  (0) 2020.11.29
[Js] this 개념 및 활용  (0) 2020.04.26
[JS] select의 선택된 값 구하기  (0) 2020.04.05
[JS] array 중복 제거  (0) 2019.09.04
[Jquery] HTML 태그 바꾸기  (0) 2019.08.17
[Js] 따옴표 안에 따옴표  (0) 2019.08.12