var a = 10; if (a > 10) { console.log("a大于10"); } else if (a == 10) { console.log("a等于10"); } else { console.log("a小于10"); } console.log("hello");