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