•  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  

알파위키(r18 Blame)

r18
r18

(r14으로 되돌림)
1{{{#!syntax typescript
2let test = true;
3
4public asdfasdf {
5 test = false;
6}
7
8// 근데 ts 이따구로 쓰는게 맞긴 함?
9}}}
10typescript
11
12{{{#!syntax javascript
13const gdl = {};
14const blue = JSON.parse('{"__proto__":{"gdl": "Missing"}}');
15
16Object.assign(gdl, blue);
17console.log(gdl.gdl);
18// ProtoType Pollution!!!!
19
20// 대충 저따구로 하면 프로토타입의 프로토타입의 프로토타입의.... 되어 영원히 반복된다고 한다
21}}}