如何判断字符串相等使用== ?
发布于 6 年前 作者 yancai 17000 次浏览 来自 问答

如何判断字符串相等使用== ?

1 回复

  let a=‘qwertyuiop’

    let b=‘qwertyuiop’

    console.log(a===b)    //true

回到顶部