File tree 3 files changed +46
-0
lines changed
3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ <h3>ln() function</h3>
2
+ Returns the value of the natural logarithm of the passed expression.
3
+ <br>
4
+ This function takes one argument.
5
+ <h4>Syntax</h4>
6
+ <code>ln(value)</code><br>
7
+
8
+ <h4>Arguments</h4>
9
+ <code>value</code> - any positive number.
10
+ <br>
11
+
12
+ <h4>Example</h4>
13
+ <!-- Show example of function.-->
14
+ <code>ln(1) → 0</code><br>
15
+ <code>ln(e) → 1</code><br>
Original file line number Diff line number Diff line change
1
+ <h3>log() function</h3>
2
+ Returns the value of the logarithm of the passed value and base.
3
+ <br>
4
+ This function takes two arguments.
5
+ <h4>Syntax</h4>
6
+ <code>log(base, value)</code><br>
7
+
8
+ <h4>Arguments</h4>
9
+ <code>base</code> - any positive number.
10
+ <code>value</code> - any positive number.
11
+ <br>
12
+
13
+ <h4>Example</h4>
14
+ <!-- Show example of function.-->
15
+ <code>log(2, 32) → 5</code><br>
16
+ <code>log(0.5, 32) → -5</code><br>
Original file line number Diff line number Diff line change
1
+ <h3>log10() function</h3>
2
+ Returns the value of the base 10 logarithm of the passed expression.
3
+ <br>
4
+ This function takes one argument.
5
+ <h4>Syntax</h4>
6
+ <code>log10(value)</code><br>
7
+
8
+ <h4>Arguments</h4>
9
+ <code>value</code> - any positive number.
10
+ <br>
11
+
12
+ <h4>Example</h4>
13
+ <!-- Show example of function.-->
14
+ <code>log10(1) → 0</code><br>
15
+ <code>log10(100) → 2</code><br>
You can’t perform that action at this time.
0 commit comments