网站首页 > 博客文章 正文
简评:一开始 JavaScript 只是为网页增添一些实时动画效果,现在 JS 已经能做到前后端通吃了,而且还是年度流行语言。本文分享几则 JS 小窍门,可以让你事半功倍 ~
1. 删除数组尾部元素
一个简单方法就是改变数组的length值:
const arr = [11, 22, 33, 44, 55, 66];// truncantingarr.length = 3;console.log(arr); //=> [11, 22, 33]// clearingarr.length = 0;console.log(arr); //=> []console.log(arr[2]); //=> undefined
2. 使用对象解构(object destructuring)来模拟命名参数
如果需要将一系列可选项作为参数传入函数,你很可能会使用对象(Object)来定义配置(Config)。
doSomething({ foo: 'Hello', bar: 'Hey!', baz: 42 });function doSomething(config) { const foo = config.foo !== undefined ? config.foo : 'Hi'; const bar = config.bar !== undefined ? config.bar : 'Yo!'; const baz = config.baz !== undefined ? config.baz : 13; // ...}
不过这是一个比较老的方法了,它模拟了 JavaScript 中的命名参数。
在 ES 2015 中,你可以直接使用对象解构:
function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 }) { // ...}
让参数可选也很简单:
function doSomething({ foo = 'Hi', bar = 'Yo!', baz = 13 } = {}) { // ...}
3. 使用对象解构来处理数组
可以使用对象解构的语法来获取数组的元素:
const csvFileLine = '1997,John Doe,US,john@doe.com,New York';const { 2: country, 4: state } = csvFileLine.split(',');
4. 在 Switch 语句中使用范围值
可以这样写满足范围值的语句:
- function getWaterState(tempInCelsius) { let state; switch (true) { case (tempInCelsius <= 0):
- state = 'Solid'; break; case (tempInCelsius > 0 && tempInCelsius < 100):
- state = 'Liquid'; break; default:
- state = 'Gas';
- } return state;
- }
5. await 多个 async 函数
在使用 async/await 的时候,可以使用 Promise.all 来 await 多个 async 函数
await Promise.all([anAsyncCall(), thisIsAlsoAsync(), oneMore()])
6. 创建 Pure objects
你可以创建一个 100% pure object,它不从Object中继承任何属性或则方法(比如constructor, toString()等)
const pureObject = Object.create(null);console.log(pureObject); //=> {}console.log(pureObject.constructor); //=> undefinedconsole.log(pureObject.toString); //=> undefinedconsole.log(pureObject.hasOwnProperty); //=> undefined
7. 格式化 JSON 代码
JSON.stringify除了可以将一个对象字符化,还可以格式化输出 JSON 对象
- const obj = {
- foo: { bar: [11, 22, 33, 44], baz: { bing: true, boom: 'Hello' } }
- };// The third parameter is the number of spaces used to // beautify the JSON output.JSON.stringify(obj, null, 4);
- // =>"{// => "foo": {// => "bar": [// => 11,// => 22,// => 33,// => 44// => ],// => "baz": {// => "bing": true,// => "boom": "Hello"// => }// => }// =>}"
8. 从数组中移除重复元素
通过使用集合语法和 Spread 操作 ,可以很容易将重复的元素移除:
- const removeDuplicateItems = arr => [...new Set(arr)];
- removeDuplicateItems([42, 'foo', 42, 'foo', true, true]);//=> [42, "foo", true]
9. 平铺多维数组
使用 Spread 操作平铺嵌套多维数组:
const arr = [11, [22, 33], [44, 55], 66];const flatArr = [].concat(...arr); //=> [11, 22, 33, 44, 55, 66]
不过上面的方法仅适用于二维数组,但是通过递归,就可以平铺任意维度的嵌套数组了:
- function flattenArray(arr) { const flattened = [].concat(...arr); return flattened.some(item => Array.isArray(item)) ?
- flattenArray(flattened) : flattened;
- }const arr = [11, [22, 33], [44, [55, 66, [77, [88]], 99]]];const flatArr = flattenArray(arr);
- //=> [11, 22, 33, 44, 55, 66, 77, 88, 99]
希望这些小技巧能帮助你写好 JavaScript ~
如果大家喜欢这篇文章的话,希望大家能够收藏,转发 谢谢!更多相关资讯可以关注西安华美校区,免费获得java零基础教程!额外附送excel教程!
猜你喜欢
- 2024-10-20 轻量级的React数据流及状态管理解决方案,支持SSR服务器端渲染
- 2024-10-20 前端必备的20种基本React工具「干货」
- 2024-10-20 async await 并发(async await会阻塞吗)
- 2024-10-20 8 张图帮你一步步看清 async,await 和 promise 的执行顺序
- 2024-10-20 Atom源码阅读系列一(nasm源码阅读笔记)
- 2024-10-20 2019年JavaScript几个秘密窍门,你知道吗?
- 2024-10-20 小猿圈分享6个提JavaScript 小技巧(下)
- 2024-10-20 js遍历那些事儿(js遍历tr)
- 2024-10-20 Google 开源 zx,用 async/await 编写 shell 脚本
- 2024-10-20 深入理解 ES6 模块机制(es6模块和commonjs)
你 发表评论:
欢迎- 最近发表
- 标签列表
-
- powershellfor (55)
- messagesource (56)
- aspose.pdf破解版 (56)
- promise.race (63)
- 2019cad序列号和密钥激活码 (62)
- window.performance (66)
- qt删除文件夹 (72)
- mysqlcaching_sha2_password (64)
- ubuntu升级gcc (58)
- nacos启动失败 (64)
- ssh-add (70)
- jwt漏洞 (58)
- macos14下载 (58)
- yarnnode (62)
- abstractqueuedsynchronizer (64)
- source~/.bashrc没有那个文件或目录 (65)
- springboot整合activiti工作流 (70)
- jmeter插件下载 (61)
- 抓包分析 (60)
- idea创建mavenweb项目 (65)
- vue回到顶部 (57)
- qcombobox样式表 (68)
- vue数组concat (56)
- tomcatundertow (58)
- pastemac (61)
本文暂时没有评论,来添加一个吧(●'◡'●)