Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you do exponents in JavaScript?

Like how would you do 12^2?

share|improve this question

4 Answers

up vote 36 down vote accepted

Math.pow():

js> Math.pow(12, 2)
144
share|improve this answer
When looking through the Math methods, I saw exp, and when that didn't work I just gave up. xD Should've gone a little further. Oh well. Thanks. – tylermwashburn May 6 '11 at 5:20
2  
@tylermwashburn: exp(x) is the number e raised to the power x, that is, e^x. e = 2.71828182846... – Andreas Rejbrand Apr 15 '12 at 14:44

Math.pow(base, exponent), for starters.

Example:

Math.pow(12, 2)
share|improve this answer

Math.pow(x, y) works fine for x^y and even evaluates the expression when y is not an integer. A piece of code not relying on Math.pow but that can only evaluate integer exponents is:

function exp(base, exponent) {
  exponent = Math.round(exponent);
  if (exponent == 0) {
    return 1;
  }
  if (exponent < 0) {
    return 1 / exp(base, -exponent);
  }
  if (exponent > 0) {
    return base * exp(base, exponent - 1)
  }
}
share|improve this answer

If you want to find the power of x of y then

use Math.pow

example

document.write(Math.pow(7,2));

If you want exponent Use Math.exp

example

document.write(Math.exp(1));
share|improve this answer
Math.exp(n) is Euler's number raised to the nth power, not exponent. – Anish Gupta Jun 19 '12 at 8:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.