Classes Flashcards
1
Q
Absolute value
A
Math.abs(espression);
2
Q
y to the power of x
A
Math.pow(y, x);
3
Q
addition, subtraction, multiplication, & division
A
+,
-,
* or (),
/
4
Q
initialize string
A
String name = “”;
5
Q
section of a string
A
name.substring(index, index after required value)
6
Q
Get the index of the value in a string
A
name.indexOf(value);