1. Write a JavaScript program to sum the multiples of 3 and 5 under 1000.

2.Write a JavaScript program which accepts a number as input and inserts dashes (-) between each two even numbers. For example if you accept 025468 the output should be 0-254-6-8.

Write a JavaScript program that accepts an array input from a user and finds the most frequent item in the array. Sample array : const arr1=[3, 'a', 'a', 'a', 2, 3, 'a', 3, 'a', 2, 4, 9, 3]; Sample Output : a ( 5 times )