alenet1992 / alenet-tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

alenet-tools

My first npm package:

Getting Started

These instructions will give you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on deploying the project on a live system.

Available

Explain how to run the automated tests for this system

function addNumber

const result = addNumber(
    param1: Number, (1)
    param2: Number, (2)
);

console.log(result); // 3

function subNumber

const result = subNumber(
    param1: Number, (2)
    param2: Number, (1)
);

console.log(result); // 1

function divNumber

const result = divNumber(
    param1: Number, (2)
    param2: Number, (2)
);

console.log(result); // 1

About


Languages

Language:JavaScript 100.0%