2021.04.02
🎉 2021.04.02
1. hashChange event
: https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onhashchange
2. 브라우저의 해시 모드 vs 히스토리 모드
: https://happy-coding-day.tistory.com/128
3. javascript continue, break;
let text = '';
const arr = [1,2,3,4,5];
// 1.
for (let item of arr) {
if( item === 3 ) continue;
text += item;
}
// text => "1245"
// 2.
for (let item of arr) {
if( item === 3 ) break;
text += item;
}
// text => "12"
🤔 Javascript monkey patching
: https://www.audero.it/blog/2016/12/05/monkey-patching-javascript/
: 안티패턴! 객체의 프로토타입을 직접 변경하는 것?
Author And Source
이 문제에 관하여(2021.04.02), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kyh196201/2021.04.02저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)