2.1.0 • Published 2 years ago

number-properties v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 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

2 years ago

2.0.11

2 years ago

2.0.10

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.7

2 years ago

2.0.6

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.0

2 years ago