JavaScript Exercises Basic#6 - Finding odd numbers from array
You will be given few numbers in an array. Write a program which returns the sum of ODD numbers in array and the smallest ODD number.
Solution
We need two variables, sum and min. Initialize sum with 0, and min with a huge random number. Javascript h...
reyjang.hashnode.dev2 min read