原型链污染学习
原型链污染学习链接:https://www.leavesongs.com/PENETRATION/javascript-prototype-pollution-attack.html?page=1 node.jsjs创建对象的形式1.普通创建12var name={name:'sauy','age':'19'}var person={} 2.构造函数方法创建12345678910function person(){ this.name='sauy'; this.test=function (){ return 23333; }}person.prototype.a=3;web=new person();console.log(web.test());console.log(web.a) 3.通过object创建123var a=new...