对空字符串使用split()<p><strong>对空字符串使用split,将产生一个0下标值为空的数组</strong></p> <pre><code class="language-javascript">let str = ''; let arr = str.split(','); console.log(arr); // [""]</code></pre>