摘要: 在页面加载时弹出提示框 效果: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewp 阅读全文
posted @ 2021-06-10 17:59 pangqianjin 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 数组扁平化 1.使用arr.flat() const arr = [1,[2,[3,[4,5]]], 6] const res = arr.flat(Infinity) 2.使用正则 const arr = [1,[2,[3,[4,5]]], 6] const res = JSON.stringif 阅读全文
posted @ 2021-06-10 15:55 pangqianjin 阅读(99) 评论(0) 推荐(0) 编辑