Posted in Javascript onJanuary 18, 2015
和其他语言一样,JavaScript也有条件语句对流程上进行判断。包括各种操作符合逻辑语句
比较操作符
常用的比较操作符有 等于 == , 不等于!= , 大于 >, 小于 <,大于等于 >= ,小于等于 <=
document.write("Study" == "study");//false document.write("Study" < "study"); //false document.write("Study".toUpperCase())//STUDY document.write("Study".toLowerCase() == "study".toLowerCase()+"<br>");//true 利用toLowerCase()和toUpperCase()进行大小写转换
以上就是关于javascript比较操作符的相关内容了,希望小伙伴们能够喜欢
Javascript基础教程之比较操作符
- Author -
hebedich声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@