zen-swap-math-library
v1.0.1
Published
This library provides a function to multiply two numbers.
Readme
Math Library
This library provides a function to multiply two numbers.
Installation
npm install zen-swap-math-libraryUsage
Here’s how you can utilize the Library:
const { addition,multiply,substraction } = require('zen-swap-math-library');
console.log(addition(10,20)); // Output 30
console.log(multiply(2, 3)); // Output 6
console.log(substraction(15,4)); //Output 11