JS如何提高开发效率?这些技巧你知道吗?
Admin 2021-09-16 群英技术资讯 337 次浏览
今天给大家分享的是JS如何提高开发效率的内容,其实有很多JavaScript技巧可以帮助我们提高开发的效率,接下来小编就给大家分享一下比较实用的技巧,感兴趣的朋友就继续往下看吧。
减少代码行数和加快开发的技术!
我们在开发中,经常要写一些函数,如排序、搜索、寻找唯一的值、传递参数、交换值等,在这里我列出了我搜集的一些技术资源,可以像高手一样写出这些函数!
这些方法肯定会对你有帮助:
这些JavaScript黑客技术大多使用ECMAScript6(ES2015)以后的技术,尽管最新版本是ECMAScript11(ES2020)。
注意:下面所有的技巧都是在谷歌浏览器的控制台测试的。
可以用默认值来初始化特定大小的数组,如""、null或0。你可能已经把这些用于一维数组,但如何初始化二维数组/矩阵呢?
const array = Array(5).fill(''); // Output (5) ["", "", "", "", ""] const matrix = Array(5).fill(0).map(()=>Array(5).fill(0)); // Output (5) [Array(5), Array(5), Array(5), Array(5), Array(5)] 0: (5) [0, 0, 0, 0, 0] 1: (5) [0, 0, 0, 0, 0] 2: (5) [0, 0, 0, 0, 0] 3: (5) [0, 0, 0, 0, 0] 4: (5) [0, 0, 0, 0, 0] length: 5
使用reduce方法来快速进行基本的数学运算。
const array = [5,4,7,8,9,2];
求和
array.reduce((a,b) => a+b); // Output: 35
最大值
array.reduce((a,b) => a>b?a:b); // Output: 9
最小值
array.reduce((a,b) => a<b?a:b); // Output: 2
有内置的sort()和reverse()方法来对字符串进行排序,但对数字或对象数组的排序呢?
数字和对象的排序技巧,可以按照递增和递减的顺序进行排序。
字符串排序
const stringArr = ["Joe", "Kapil", "Steve", "Musk"] stringArr.sort(); // Output (4) ["Joe", "Kapil", "Musk", "Steve"] stringArr.reverse(); // Output (4) ["Steve", "Musk", "Kapil", "Joe"]
数字排序
const array = [40, 100, 1, 5, 25, 10]; array.sort((a,b) => a-b); // Output (6) [1, 5, 10, 25, 40, 100] array.sort((a,b) => b-a); // Output (6) [100, 40, 25, 10, 5, 1]
对象排序
const objectArr = [ { first_name: 'Lazslo', last_name: 'Jamf' }, { first_name: 'Pig', last_name: 'Bodine' }, { first_name: 'Pirate', last_name: 'Prentice' } ]; objectArr.sort((a, b) => a.last_name.localeCompare(b.last_name)); // Output (3) [{…}, {…}, {…}] 0: {first_name: "Pig", last_name: "Bodine"} 1: {first_name: "Lazslo", last_name: "Jamf"} 2: {first_name: "Pirate", last_name: "Prentice"} length: 3
像0,undefined,null,false,"",''这样的值可以通过下面的技巧轻松过滤。
const array = [3, 0, 6, 7, '', false]; array.filter(Boolean); // Output (3) [3, 6, 7]
如果你想减少嵌套,比如if...else或switch,可以使用逻辑运算符AND/OR。
function doSomething(arg1){ arg1 = arg1 || 10; // set arg1 to 10 as a default if it's not already set return arg1; } let foo = 10; foo === 10 && doSomething(); // is the same thing as if (foo == 10) then doSomething(); // Output: 10 foo === 5 || doSomething(); // is the same thing as if (foo != 5) then doSomething(); // Output: 10
你可能已经在for循环中使用了indexOf(),它返回第一个找到的索引,或者使用较新的includes(),它从数组中返回布尔值true/false,以找出/删除重复的值。这里我们有两种更快捷的方法。
const array = [5,4,7,8,9,2,7,5]; array.filter((item,idx,arr) => arr.indexOf(item) === idx); // or const nonUnique = [...new Set(array)]; // Output: [5, 4, 7, 8, 9, 2]
很多时候,需要通过创建计数器对象或Map来解决问题,该对象以变量为键,以其频率/出现次数为值来跟踪变量。
let string = 'kapilalipak'; const table={}; for(let char of string) { table[char]=table[char]+1 || 1; } // Output {k: 2, a: 3, p: 2, i: 2, l: 2}
和
const countMap = new Map(); for (let i = 0; i < string.length; i++) { if (countMap.has(string[i])) { countMap.set(string[i], countMap.get(string[i]) + 1); } else { countMap.set(string[i], 1); } } // Output Map(5) {"k" => 2, "a" => 3, "p" => 2, "i" => 2, "l" => 2}
你可以用三元运算符避免嵌套条件if...elseif...elseif。
function Fever(temp) { return temp > 97 ? 'Visit Doctor!' : temp < 97 ? 'Go Out and Play!!' : temp === 97 ? 'Take Some Rest!'; } // Output Fever(97): "Take Some Rest!" Fever(100): "Visit Doctor!"
for 和 for...in 默认会得到索引,但你可以使用 arr[index]。
for...in也接受非数字,所以要避免它。
forEach,for...of可以直接得到元素。
forEach也可以得到索引,但for...of不能。
在日常工作中,我们经常需要合并多个对象。
const user = { name: 'Kapil Raghuwanshi', gender: 'Male' }; const college = { primary: 'Mani Primary School', secondary: 'Lass Secondary School' }; const skills = { programming: 'Extreme', swimming: 'Average', sleeping: 'Pro' }; const summary = {...user, ...college, ...skills}; // Output gender: "Male" name: "Kapil Raghuwanshi" primary: "Mani Primary School" programming: "Extreme" secondary: "Lass Secondary School" sleeping: "Pro" swimming: "Average"
箭头函数表达式是传统函数表达式的一个紧凑的替代方案,但它有局限性,不能在所有情况下使用。因为它们有词法范围(parental scope),没有自己的this和arguments,因此它们指的是它们被定义的环境。
const person = { name: 'Kapil', sayName() { return this.name; } } person.sayName(); // Output "Kapil"
箭头函数改写为:
const person = { name: 'Kapil', sayName() { return this.name; } } person.sayName(); // Output "Kapil"
如果在?之前的值是未定义的或空的,可选链式?就会停止评估,并返回未定义。
const user = { employee: { name: "Kapil" } }; user.employee?.name; // Output: "Kapil" user.employ?.name; // Output: undefined user.employ.name // Output: VM21616:1 Uncaught TypeError: Cannot read property 'name' of undefined
使用内置的Math.random()方法。
const list = [1, 2, 3, 4, 5, 6, 7, 8, 9]; list.sort(() => { return Math.random() - 0.5; }); // Output (9) [2, 5, 1, 6, 9, 8, 4, 3, 7] // Call it again (9) [4, 1, 7, 5, 3, 8, 2, 9, 6]
空值合并运算符(??)是一个逻辑运算符,当其左侧的操作数为空或未定义时,返回其右侧的操作数,否则返回其左侧的操作数。
const foo = null ?? 'my school'; // Output: "my school" const baz = 0 ?? 42; // Output: 0
那些神秘的3个点...可以Rest或Spread!
function myFun(a, b, ...manyMoreArgs) { return arguments.length; } myFun("one", "two", "three", "four", "five", "six"); // Output: 6
和
const parts = ['shoulders', 'knees']; const lyrics = ['head', ...parts, 'and', 'toes']; lyrics; // Output: (5) ["head", "shoulders", "knees", "and", "toes"]
const search = (arr, low=0,high=arr.length-1) => { return high; } search([1,2,3,4,5]); // Output: 4
我们可以使用一些内置的方法,如.toPrecision()或.toFixed()来帮助实现此类问题。
num.toString(2); // Output: "1010" num.toString(16); // Output: "a" num.toString(8); // Output: "12"
let a = 5; let b = 8; [a,b] = [b,a] [a,b] // Output (2) [8, 5]
function checkPalindrome(str) { return str == str.split('').reverse().join(''); } checkPalindrome('naman'); // Output: true
使用Object. entries(),Object.key()和Object.values()。
const obj = { a: 1, b: 2, c: 3 }; Object.entries(obj); // Output (3) [Array(2), Array(2), Array(2)] 0: (2) ["a", 1] 1: (2) ["b", 2] 2: (2) ["c", 3] length: 3 Object.keys(obj); (3) ["a", "b", "c"] Object.values(obj); (3) [1, 2, 3]
关于js如何提高开发效率就介绍到这,上述技巧小编觉得比较实用,有需要的朋友可以参考看看,希望大家阅读完这篇文章能有所收获,想要了解更多大家可以关注群英网络其它相关文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
改变方法:1、利用nvm工具,执行“nvm install 指定版本号”命令可切换至指定版本,“nvm install lastest”命令可升级到最新版;2、利用Node Binary管理模块,执行“n 指定版本号”命令可切换至指定版本。
这篇文章主要介绍了vue中按钮操作完刷新页面的实现方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
React 是由 Facebook 软件工程师 Jordan Walke 创建,React 的第一个版本在七年前问世,现在,Facebook 负责维护,本文给大家介绍React 并发功能体验前端并发模式的问题,感兴趣的朋友跟随小编一起看看吧
RPC是服务器和服务器之间的通信,它是基于TCP协议的,传输的数据是二进制,因此数据包要相比于http要小,同时解码数据更快。node中的net模块是创建RPC服务。
这篇文章主要为大家详细介绍了纯js实现打字机效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008