# Roots in JavaScript ## Square Root ```javascript Math.sqrt(25); // 5 Math.sqrt(2); // 1.4142135623730951 Math.sqrt(-4); // NaN (no real result) ``` ## Cube Root ```javascript Math.cbrt(2