Create a function that can converts fahrenheit to celcius.
Sample output will says
"Today is 80F (26.7C)."
This should work given any number.
Write a function that convert Japanese Yen to Dollars.
The output should say
"100 Yen is 0.77 US Dollars".
This should work given any number.
Given the array of numbers, write funtion returning largest number in array.
const largestInt = [2,5,7,1337,13,21,22,55,66,13,14551,41];
Calculate the sum of all the numbers in the following array
const sumInt = [6,1,643,234,123,4,7,9];
Given any array of numbers (all will be > 0), write a function that returns the number of odd numbers in the array.
const countNumber = [1,3,7,6,13,20,2,5,33,9,14];
Check if a string is a palinadrome.
Challenge: Check each value of an Array if it's a palindrome
const words = ["Wow","RACEcar","cvdewe3q","dEed","nOoN","stuff","LEvEL","Paladin","RaDaR","famous","Taxi"];
Check if a string is a palinadrome.