이것으로 만우절에 코더 친구에게 장난을 치십시오!
2460 단어 javascript
Get Ready To Prank Your Coder Friends With A Simple Code!
다음과 같이 console.log 함수를 다시 작성하십시오.
var $old_consoleLog = console.log;
console.log = function(String){
$old_consoleLog("Bonkers: " + String);
}
설명:
var $old_consoleLog = console.log;
console.log 함수를 다른 변수로 저장: "$old_consoleLog"
코더 친구가 이 변수를 찾도록 하지 마십시오.
console.log = function(String){
$old_consoleLog("Bonkers: " + String);
}
원래 console.log 함수를 다시 작성하여 "Bonkers: ..."를 출력합니다.
"Bonkers를 접두사로 다른 값으로"대체할 수도 있습니다.
다음을 사용하여 변경 사항을 되돌릴 수 있습니다.
console.log = $old_consoleLog;
반응: 뭐? Console.log가 출력에 Bonkers를 추가하는 이유는 무엇입니까?
Reference
이 문제에 관하여(이것으로 만우절에 코더 친구에게 장난을 치십시오!), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mafee6/prank-your-coder-friend-on-april-fools-with-this-2f3d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)