Calculate the area of any circle || Java script

Опубликовано: 27 Май 2026
на канале: CODING LIFE
645
14

Hello to all my lovely viewers.
In this video we would be learning how to calculate area of a circle in JavaScript programming language.
EDITOR USED --- ATOM
VIDEO RECORDER --- BANDICAM
Program code is as follows:



function Calculate_AreaCircle(radius){
var Circle_Area;
var pie = 22/7;
Circle_Area = pie * radius * radius
console.log("The area of the given circle is: " + Circle_Area);
}
Calculate_AreaCircle(56);