arthmetic-operations
v1.0.3
Published
A package to perform basic arithmetic operations.
Downloads
2
Readme
Arithmetic Operations
This is a simple npm package to perform basic arithmetic operations.
Installation
You can install this package via npm:
npm install arithmetic-operations
Usage
const { add, subtract, multiply, divide } = require('arithmetic-operations');
console.log(add(5, 3)); // Output: 8
console.log(subtract(5, 3)); // Output: 2
console.log(multiply(5, 3)); // Output: 15
console.log(divide(6, 3)); // Output: 2
License
This project is licensed under the MIT License.