exponent in javascript
Math.pow(base, exponent);
Math.pow(2, 4);
// Outputs 16
// The same as going 2^4, 2 to the power of 4let number = 2;
let exponent = 3;
//using the exponent operator
console.log( number ** exponent);
// using the Math library
console.log( Math.pow(number, exponent);
// these will both output 8 Math.pow(base, exposant);
// if (math.pow(4,3)
//do (4*4*4)
//output:64
Also in JavaScript:
- typeof javascript
- jquery add text to textbox
- alert user javascript
- react callback set staet
- col to right bootstrap
- javascript reload page
- swap variables using temp javascript
- javascript set localstorage
- the simulation using expo won't start - react native
- convert integer month to string month react native
- expressjs create encrypted password
- how to load existing json data in nuxt
- react redux npm
- jquery event source
- react native header
- javascript fill circle with color
- jquery basic authenticated get user
- javascript the difference between innerText vs. innerHTML vs. textContent
- javascript check if set contains
- logical operators javascript
- javascript tofixed 2
- Como saber se existe um atributo em um objeto
- mongoose save return id
- subtrair datas javascript frontend