和其他語言一樣,JavaScript也有條件語句對流程上進行判斷。包括各種運算符合邏輯語句
比較操作符
常用的比較運算子有 等於 == , 不等於! = , 大於 >, 小於 = ,小於等於
document.write("Study" == "study");//false
document.write("Study"
document.write("Study".toUpperCase())//STUDY
document.write("Study".toLowerCase() == "study".toLowerCase() "
");//true 使用toLowerCase()和toUpperCase()進行大小寫轉換
以上就是關於javascript比較操作符的相關內容了,希望小夥伴們能夠喜歡