~~ (取整) ~~代表双非按位取反运算符, 如果你想使用比Math.floor()更快的方法,那就是它了。 需要注意,对于正数,它向下取整;对于负数,向上取整;非数字取值为0,它具体的表现形式为: ~~null; // => 0 ~~undefined; // => 0 ~~Infinity; / ...
分类:
Web程序 时间:
2021-05-24 08:51:19
阅读次数:
0
var,let,const都可以用于声明变量,但是他们之间有本质的区别 1.var声明的是全局变量,会挂载到window对象上面去,而let和const则是块级作用域 var a = 33; console.log(a,window.a) var b = 22; console.log(b,wind ...
分类:
编程语言 时间:
2021-05-24 08:00:00
阅读次数:
0
let a = 1 function b() { /* //一 作用域内声明提升 console.log(a)//undefined let a = 2 */ //二 console.log(a)//1 a = 2 } b() ...
分类:
编程语言 时间:
2021-05-24 01:47:56
阅读次数:
0
2021-05-01,9点51 自己写测试debug redis代码:错误:/usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o: In function `_start':(.text+0x20): undefined re ...
分类:
其他好文 时间:
2021-05-03 12:30:41
阅读次数:
0
//参考与https://blog.csdn.net/weixin_44498318/article/details/106645018 ...
分类:
其他好文 时间:
2021-04-30 12:31:30
阅读次数:
0
1、利用ES6 Set去重 {}没去重 let arr = [1, 1, 'true', 'true', true, true, 15, 15, false, false, undefined, undefined, null, null, NaN, NaN, 'NaN', 'NaN', 0, 0, ...
分类:
编程语言 时间:
2021-04-29 11:48:15
阅读次数:
0
一、typeof 检测出来的数据类型 --> 基本数据类型 string number boolean null undefined --> 变量初始化了,但是没有赋值 --> 函数没有传实参,那么形参是undefined --> 函数没有返回值,那么函数调用完的地方是undefined --> 复 ...
分类:
Web程序 时间:
2021-04-28 12:17:27
阅读次数:
0
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:
编程语言 时间:
2021-04-27 14:24:27
阅读次数:
0
首先自定义一个专门处理异步的 hooks import {reactive, toRefs} from "vue"; const useAsyncFn = (fn)=>{ let data = reactive({value:undefined ,loading:false,err:undefine ...
分类:
Web程序 时间:
2021-04-24 11:55:00
阅读次数:
0
1 // 防抖 2 function debounce(func,delay){ 3 let timer = null 4 return function(){ 5 let context = this 6 let args = arguments 7 if(timer) clearTimeout( ...
分类:
Web程序 时间:
2021-04-24 11:51:25
阅读次数:
0