34,333
edits
Changes
→JavaScript String Object Methods
</tr>
<tr>
<td>big()<td>Increases the font size of the text. Returns by returning the string wrapped
in HTML <big> and </big> elements (e.g. <big><big>Example</big></big>)</td>
</tr>
<tr>
<td>bold()<td>Makes the string bold. Equivalent to wrapping by returning the string wrapped in HTML <b> and </b> elements (e.g <b>Example</b>)</td>
</tr>
<tr>
<td>charAt(''index'')<td>Returns the character at the specified indexs index into the string. It is important to remember that the first character in a string in at index 0, not index 1.</td>
</tr>
<tr>
<td>concat(''arg1'', ''arg2'' ...)<td>Takes two or strings as auguments arguments and combines them into a single string. Returns the combined string.</td>
</tr>
<tr>