Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function numberLocation(input) {
- let num = Number(input[0]);
- if (num < 100) {
- console.log("Less than 100");
- } else if (num > 200) {
- console.log("Greater than 200");
- } else if (100 <= num <= 200) {
- console.log("Between 100 and 200");
- }
- }
Add Comment
Please, Sign In to add comment