首页 > Web开发 > 详细

JS 杂项

时间:2020-12-09 21:05:07      阅读:42      评论:0      收藏:0      [点我收藏+]

#1.

   +"1"

1
!!1
true
!!0
false
 
text="aaaa1111"
"aaaa1111"
pattern=/\d+/g//
 
/\d+/g

text.search(pattern)
4
text.match(pattern)
 
Array [ "1111" ]

text.replace(pattern,"2222")
"aaaa2222"
text.split(/\D+/)
 
Array [ "", "1111" ]
 
0!==0
false
null!=undefined
false
null!==undefined
true
null==undefined
true
null===undefined
false
 
var s="1111";
function f(){
    console.log(s)
    var s=‘2222‘
    console.log(s)
}

JS 杂项

原文:https://www.cnblogs.com/KAstandardization/p/14110318.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!