Warning: opendir(/var/www/html/wp-content/mu-plugins): Failed to open directory: Permission denied in /var/www/html/wp-includes/load.php on line 981 Comments on: S55 – 1st https://sewonist.com/s55-1st/ sewonist = sewon + artist Fri, 10 Apr 2020 03:41:06 +0000 hourly 1 https://wordpress.org/?v=6.9.4 By: sewonist https://sewonist.com/s55-1st/#comment-407 Tue, 12 Mar 2013 05:55:17 +0000 https://sewonist.com/?p=3578#comment-407 In reply to 쿠로.

네 var 로 선언하지 않는 모든 변수는 global 에 잡히는 것이였군요. 그렇다는 것은

[js]
function f1(){
a = 1;
}
function f2(){
console.log(++a);
}
[/js]

위의 코드는 결국 아래와 같이 볼 수 있겠네요.

[js]
function f1(){
window.a = 1;
}
function f2(){
window.console.log(++window.a);
}
[/js]

]]>
By: 쿠로 https://sewonist.com/s55-1st/#comment-406 Tue, 12 Mar 2013 04:55:38 +0000 https://sewonist.com/?p=3578#comment-406 canvas는 var로 선언된게 아니라서 global에 키로 잡혀서 참조가 가능한것 같습니다.

]]>