Skip to content
zqy233的前端学习笔记
Search
K
Main Navigation
基础
html
css
git
http
java
算法
创建前端项目
前端项目规范化
英语学习
JS
基础
es6
工具函数
进阶
api
node
typescript
框架
vue
react
uniapp
uniCloud
express
electron
微信小程序
乾坤
koa
tailwindcss
wujie微前端
问题解决
库
Autoprefixer
Monaco-Editor
ajax
axios
dayjs
docx-merge
eharts
element-ui
eslint
gsap
jquery
logic-flow
node包
pinia
swiper
threejs
vitepress
vxe-table
xlsx
导出pdf
打印
打包
unbuild
rollup
babel
server
vite
esbuild
源码阅读
create-vue
element-pro-components
vite
vite-plugin-electron
vitepress
vscode-auto-rename-tag
vscode-prettier
vue2
vue3
vuex
工具
HBuilderX
typora
vscode
vscode插件开发
GitHub
主题
GitHub
目录
回到顶部
索引
Table of Contents for current page
逻辑运算符
#
符号
逻辑
&
逻辑与,有一个false,结果为false
&&
短路与,前一个false,结果为false,前一个为false,后一个不执行
|
逻辑或,有一个为true,结果为true
||
短路或,有一个为true,结果为true
!
逻辑非,!false=true,!true=false
^
逻辑异或,相同是false,不同是true