README
square
Returns the square of the given number. If parameter is not a number then it returns 1
Installing
npm install get-square
How to use
const square = require('get-square');
const result = square(9)
returns the square of the given number
<script type="module">
import getSquare from 'https://cdn.skypack.dev/get-square';
</script>
Returns the square of the given number. If parameter is not a number then it returns 1
npm install get-square
const square = require('get-square');
const result = square(9)