mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-22 22:03:27 +08:00
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
|
||
|
||
|
||
//1.这个对象存在于js,而不存在于nodejs,比如window,document,screen.
|
||
//2.这些对象的属性 是一个值。
|
||
var window ={}
|
||
// window.btoa=function(aa){
|
||
// return aa
|
||
// }
|
||
var document={}
|
||
|
||
document={"location":{"href":"https://bbs.nightteam.cn/member.php?mod=register"}}
|
||
var screen ={"width":900,"height":1200}
|
||
console.log(screen.width)
|
||
|