2.1.0 • Published 3 years ago

number-properties v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Project Title


Try Different Properties of number with basic functionalities

It has basic functions like

  • isSquareRoot : used to find if number is a perfect square or not
  • addNum : used to add two numbers
  • subNum : used to subtract two numbers
  • mulNum : used to get product of two numbers
  • divNum : used to get Division of two numbers
  • squareNum : used to get square of a number

How to Import

const numberProperties = require("number-properties");

Sample Input

  • console.log( numberProperties.isSquareRoot(16) );
  • console.log( numberProperties.addNum(5,8) );
  • console.log( numberProperties.subNum(8,5));
  • console.log( numberProperties.squareNum(5));
  • console.log(numberProperties.mulNum(3,8));
  • console.log(numberProperties.divNum(24,4));

Sample Output

  • true
  • 13
  • 3
  • 25
  • 24
  • 6
2.1.0

3 years ago

2.0.11

3 years ago

2.0.10

3 years ago

2.0.9

3 years ago

2.0.8

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.0

3 years ago