Articles in this series
Buger Store (Burgercog) It is the best project for beginners in javascript. Through this Project You will Learn Array, Event Listeners, Creating...
Create a function that takes voltage and current and returns the calculated power. Examples circuitPower(230, 10) ➞ 2300 circuitPower(110, 3) ➞...
Create a function that takes an array containing only numbers and return the first element. Examples getFirstValue([1, 2, 3]) ➞ 1 getFirstValue([80,...
Create a function that takes the age in years and returns the age in days. Examples calcAge(65) ➞ 23725 calcAge(0) ➞ 0 calcAge(20) ➞ 7300 Notes Use...
Write a function that takes the base and height of a triangle and return its area. The area of a triangle is: (base * height) /...
Create a function that takes a number as an argument, increments the number by +1 and returns the result. Examples addition(0) ➞ 1 addition(9) ➞...