HTMLElement.offsetWidth

image.png

// 例子自己去原文件里看吧。。
// 有两个例子哦,16,17

  1. function strip(bandName) {
  2. return bandName.replace(/^(a |the |an )/i, '').trim();
  3. }
  4. const sortedBands = bands.sort((a, b) => strip(a) > strip(b) ? 1 : -1);