Hi there,Hello, I am building my site with wix and would like to add a special input calculator including basic functions like Multiplication, division, square root. Can i find ready codes for it ?
$sum = 5 + 3; // 8
$multiply = 5 * 3; // 15
$divide = 15/3; // 5
$subtract = 3 - 1; // 2
$squareroot =sqrt(4); // 2 -- square root of 4
var sum = 5 + 3, // 8
multiply = 5 * 3, // 15
divide = 15/3, // 5
subtract = 3 - 1, // 2
squareroot = Math.sqrt(4); // 2 -- square root of 4
function radiusCircum($radius){
// get the Circumference of a Circle, with the Radius supplied
return $radius * 2 * pi();
}
function radiusCircum(radius){
// get the Circumference of a Circle, with the Radius supplied
return radius * 2 * Math.PI;
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.