1. /* while(boolean){
    2. // boolean true就是一直执行,陷入一个死循环
    3. }*/
    4. var a = 10;
    5. while(a){
    6. alert("hello world");
    7. }