-
Notifications
You must be signed in to change notification settings - Fork 0
/
q32.ts
24 lines (20 loc) · 775 Bytes
/
q32.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Ordinal Numbers: Ordinal numbers indicate their position in a array, such as 1st or 2nd. Most ordinal numbers end in th, except 1, 2, and 3.
// • Store the numbers 1 through 9 in a array.
// • Loop through the array.
// • Use an if-else chain inside the loop to print the proper ordinal ending for each number. Your output should read "1st 2nd 3rd 4th 5th 6th 7th 8th 9th", and each result should be on a separate line.
let numbers: number [];
numbers = [1,2,3,4,5,6,7,8,9,10];
for(var i=0; i<numbers.length; i++){
if( numbers[i] == 1){
console.log("1st")
}
else if( numbers[i] == 2){
console.log("2nd");
}
else if(numbers[i] == 3){
console.log("3rd");
}
else{
console.log(numbers[i] + " th ");
}
}