python If语句和javascript IF语句对比
python If语句
>>> def myFunction(x):
if x>20:
print ("good day")
>>> myFunction(30)
good day
javascript if语句
<script>
function myFunction(){
var x="";
var time=new Date().getHours();
if (time<20){
x="Good day";
}
document.getElementById("demo").innerHTML=x;
}
</script>
学习感悟
对比
js的If条件要写在小括号里,然后函数体是在或括号里面。python则比较简洁,以缩进体现。