# 練習題1 - ``` var score = 100 if (score >= 100){ console.log("you are no.1") } else if{ (score >= 60) console.log("pass") } else{ console.log("fail") } ``` or ``` var score = 100; if (score < 60) { console.log('fail'); } else if (score < 99) { console.log('pass'); } else { console.log('pass\nyou are no1!'); } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up