mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2026-03-13 15:21:15 +08:00
chore: Add PowLogarithmic in Math (#836)
* Add PowLogarithmic in Math * add description
This commit is contained in:
15
Maths/test/PowLogarithmic.test.js
Normal file
15
Maths/test/PowLogarithmic.test.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import { powLogarithmic } from '../PowLogarithmic'
|
||||
|
||||
describe('PowLogarithmic', () => {
|
||||
it('should return 1 for numbers with exponent 0', () => {
|
||||
expect(powLogarithmic(2, 0)).toBe(1)
|
||||
})
|
||||
|
||||
it('should return 0 for numbers with base 0', () => {
|
||||
expect(powLogarithmic(0, 23)).toBe(0)
|
||||
})
|
||||
|
||||
it('should return the base to the exponent power', () => {
|
||||
expect(powLogarithmic(24, 4)).toBe(331776)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user