2019.08.09
给指定的元素设置快捷键
关于
String.prototype.replace
特殊替换模式const msg = 'This is a great message'; msg.replace('great', 'wonderful'); // "This is a wonderful message" // // -> 'great' is replaced by 'wonderful' msg.replace('great', '$&-$&'); // "This is a great-great message" // '$&' represents the matched substring // // -> 'great' is replaced by 'great-great' msg.replace('great', '$`'); // "This is a This is a message" // '$`' represents the string before the matched string // // -> 'great' is replaced by 'This is a ' msg.replace('great', `$'`) // "This is a message message" // `$'` represents the string after the matched string // // -> 'great' is replaced by ' message'
https://www.stefanjudis.com/today-i-learned/string-prototype-replace-supports-replacement-patterns/
Kyle Simpson已经开始着手他的畅销的“你不知道的JavaScript”系列丛书的第2版。
RxJS是一个使用Observables的反应式编程框架,使编写异步代码变得非常容易。根据官方文档,这个项目是JavaScript的一种反应式扩展,具有更好的性能,更好的模块化,更好的可调试调用堆栈,同时保持大部分向后兼容,有一些突破性的变化,减少了API表面。它是Angular用来处理反应性的官方库,将回调的pull操作转换为Observables。
页面可视化搭建工具技术要点
2019年大前端技术趋势分析
Grid studio是一个基于Web的电子表格应用程序,完全集成了Python编程语言。
ES2019中的新功能,
JSON.parse()
行分隔符(\ u2028)和段落分隔符(\ u2029)符号正确解析,而不是导致SyntaxError。https://blog.tildeloop.com/posts/javascript-what%E2%80%99s-new-in-es2019
如何优雅地取数值的整数和小数部分