arithmetic-operations

A simple module to do some arithmetic operations. This npm packages developed while learning about the npm packages.

Usage no npm install needed!

<script type="module">
  import arithmeticOperations from 'https://cdn.skypack.dev/arithmetic-operations';
</script>

README

arithmetic-operations

A simple module to do some arithmetic operations. This npm packages developed while learning about the npm packages.

Installation

    npm install arithmetic-operations

Usage

const { addition , multiplication, leapYear } = require('arithmetic-operations');

const additionResponse = addition([100,20,67,90,34]);

const multiplicationResponse = multiplication(100,20);

const leapYearResponse = leapYear(1996);