test_calc_here

1.0.3 • Public • Published

README.md

Calculator Module

This module provides basic arithmetic operations such as addition, subtraction, multiplication, and division.

Functions:

  • add(a, b): Adds two numbers a and b and returns the result.
  • subtract(a, b): Subtracts b from a and returns the result.
  • multiply(a, b): Multiplies a by b and returns the result.
  • divide(a, b): Divides a by b and returns the result.

Usage:

const { add, subtract, multiply, divide } = require('test_calc_here');
console.log(add(5, 3)); // Output: 8
console.log(subtract(10, 4)); // Output: 6
console.log(multiply(2, 6)); // Output: 12
console.log(divide(10, 2)); // Output: 5

Readme

Keywords

Package Sidebar

Install

npm i test_calc_here

Weekly Downloads

13

Version

1.0.3

License

ISC

Unpacked Size

1.2 kB

Total Files

3

Last publish

Collaborators

  • hada_npm