PRD for FP1.1_HW_1 - Sharu2003-27/PRD.ES-and-FP GitHub Wiki
PRD for FP1.1_HW_1
- Used map() method to find length of each string in the given array.
- Used map() method to find square each number in the given array.
- Used map() method to convert each string to uppercase in the given array.
- Used map() method to calculate the square root of each number in the given array.
- Used map() method to add prefix to each string in the given array.
- Used map() method to add 10 to each number in the given array.
- Used map() method to convert each number to its absolute value in the given array. Used Math.abs() method.
- Used map() method to append the string to each element in the given array.
- Used map() method to capitalized the third letter of each word.