Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnología web para desarrolladores
  2. JavaScript
  3. Referencia de JavaScript
  4. Objetos globales
  5. Math
  6. Math.sqrt()

Esta página ha sido traducida del inglés por la comunidad.Aprende más y únete a la comunidad de MDN Web Docs.

View in EnglishAlways switch to English

Math.sqrt()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨julio de 2015⁩.

La funciónMath.sqrt() retorna la raíz cuadrada de un número, que es

x0,Math.sqrt(x)=x=the uniquey0such thaty2=x\forall x \geq 0, \mathtt{Math.sqrt(x)} = \sqrt{x} = \text{the unique} ; y \geq 0 ; \text{such that} ; y^2 = x

Sintaxis

Math.sqrt(x)

Parámetros

x

Un numero

Valor de Retorno

La raíz cuadrada del número proporcionado. Si los números son negativos,NaN es devuelto.

Descripción

Si el valor dex es negativoMath.sqrt() retornaNaN.

Debido a quesqrt() es un método estático deMath, siempre úsalo comoMath.sqrt(), en lugar de un método del objetoMath que hayas creado (Math no es un constructor).

Ejemplos

UsandoMath.sqrt()

js
Math.sqrt(9); // 3Math.sqrt(2); // 1.414213562373095Math.sqrt(1); // 1Math.sqrt(0); // 0Math.sqrt(-1); // NaN

Especificaciones

Specification
ECMAScript® 2026 Language Specification
# sec-math.sqrt

Compatibilidad con navegadores

Ver también

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp