为什么两者不相等

Why both of them are not equal

我写了下面的代码

const appletId = 5
const applet41Pager = '#pager_s_' + (appletId - 1) + '_' + (appletId - 4)+'_center'
if ("#pager_s_4_l_center" === applet41Pager.toString()) {
  console.log('equal')
} else {
  console.log('false')
}

它提示错误。任何人都可以帮助我理解为什么它 return 是错误的吗?需要做哪些更改才能使其 return 正确?

左边的字符串是字母"l"(小写"L"),不是数字“1”。因此这两个字符串不相等。