/Day-4

Day-4 Tasks

Primary LanguageJavaScript

This Repository Contains Problem Solving Using Annonymous Function , IIFE and Arrow Functions for below Questions:-

  1. Do the below programs in anonymous function & IIFE

    1. Print odd numbers in an array
    2. Convert all the strings to title caps in a string array
    3. Sum of all numbers in an array
    4. Return all the prime numbers in an array
    5. Return all the palindromes in an array
    6. Return median of two sorted arrays of the same size.
    7. Remove duplicates from an array
    8. Rotate an array by k times
  2. Do the below programs in arrow functions.

    1. Print odd numbers in an array
    2. Convert all the strings to title caps in a string array
    3. Sum of all numbers in an array
    4. Return all the prime numbers in an array
    5. Return all the palindromes in an array