Update README
I added a hint about how to import the module which could be helpful for Beginners.
This commit is contained in:
parent
f6729ff142
commit
55cf762416
@ -15,6 +15,10 @@ npm install equations
|
|||||||
#### Examples:
|
#### Examples:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
|
//import
|
||||||
|
|
||||||
|
const Equation = require('equations').default
|
||||||
|
|
||||||
// solve
|
// solve
|
||||||
console.log(Equation.solve('4 * lg(4) ^ 3')); // 32
|
console.log(Equation.solve('4 * lg(4) ^ 3')); // 32
|
||||||
|
|
||||||
@ -77,7 +81,7 @@ Options:
|
|||||||
#### registerConstant(key: String, value: Function/Number)
|
#### registerConstant(key: String, value: Function/Number)
|
||||||
Registers a new constant. value can be a function (takes no arguments), or a constant number.
|
Registers a new constant. value can be a function (takes no arguments), or a constant number.
|
||||||
|
|
||||||
That's right, we have named these *constants* but they actually can change, that's why we can use functions to define them. An example is the `RAND` constant which calls `Math.random`.
|
That's right, we have named these *constants*, but they actually can change, that's why we can use functions to define them. An example is the `RAND` constant which calls `Math.random`.
|
||||||
|
|
||||||
Contributing
|
Contributing
|
||||||
============
|
============
|
||||||
|
Loading…
Reference in New Issue
Block a user