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

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

1 回复

  let a=‘qwertyuiop’

    let b=‘qwertyuiop’

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

回到顶部