Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

arithmetic-operations

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

github, arithmetic operations

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);