Problem #1.
Write a javascript
function name "fibbo" that will print fibbonacci numbers. The function will
input two numbers - start and count. The start will be the initial value of
fibbonacci and count will be the number of fibbo to be displayed. Invalid value
for the start will be 255 and 30. Invalid value for the count will be 218. Display
with one fibbo number per line. Implement using:
Problem #2.
Write
a javascript function name "even" that will print even numbers. The function
will input two numbers - start and end. After the input print all even numbers
within the two inputted numbers in ascending order. Implement using for loop.
Display with one number per line.