Cao Yi
Cao Yi
```javascript /** * Array.prototype.splice polyfill * 时间复杂度: o(1n) 一次遍历 * 空间复杂度: o(1n) 原地算法 */ Array.prototype.splice = function(start, deleteCount, ...items) { if (typeof start !== 'number' || isNaN(start)) { throw new...
请问这个问题有什么进展吗
When I use both @aa-ya and @skbolton 's config, it's worked. Thanks! put "hi link xmlEndTag xmlTag" in my vimrc and put "syn region xmlTagName matchgroup=xmlEndTag start=++" in .vim/after/syntax/xml.vim 