python中a>b>c,就是先比较a>b,然后再比较b>c,都为true的话就返回true:
js中的a>b>c:
小知识点:
var是js中定义变量的,var a:integer;(定义变量a,类型为整数)