会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Himmelbleu
管理
2022年9月4日
[JavaScript] &&、||
摘要: 简单运用 逻辑且(&&):左右必须都满足 true 才返回 true; 逻辑或(||):左右其中一个满足 true 就返回 true。 let user = localStorage.getItem("user"); if (user && user.age > 10) { // ... } if
阅读全文
posted @ 2022-09-04 22:42 Himmelbleu
阅读(327)
评论(0)
推荐(0)
编辑