CSS – [attribute^=value] Selector
The [attribute^=value] selector selects every element with a specific attribute that starts with a value beginning with a specified string.
The [attribute^=value] selector selects every element with a specific attribute that starts with a value beginning with a specified string.
The [attribute$=value] selector selects every element with a specific attribute that has a value ending in a specified string.
The [attribute*=value] selector selects every element with a specific attribute that has a value containing a specified string even as part of another word.
The counter() function returns the current value of the named counter as a string.
In JavaScript, the + operator, and the += operator can be used to concatenate (bring together) multiple strings, or strings and variables.
The Array join() method returns an array as a string leaving the original array unchanged.
The Array sort() method sorts the elements of an array as strings in alphabetical and ascending order, overwriting the original array.
The Array toString() method returns a string with array values separated by commas, and does not change the original array.
The Boolean toString() method returns a string from the boolean.
The Date parse() method parses a date string and returns the number of milliseconds since January 1, 1970 00:00:00.
The Date toDateString() method returns the date (not the time) of a Date object as a string.
The Date toISOString() method returns a Date object as a string, using the ISO standard format: YYYY-MM-DDTHH:mm:ss.sssZ.
The Date toJSON() method returns a Date object as a string, formatted as a JSON date, using the format: YYYY-MM-DDTHH:mm:ss.sssZ.
The Date toLocaleDateString() method returns the date (not the time) of a Date object as a string, using locale conventions.
The Date toLocaleString() method returns a date and time as a string, using locale settings.
The Date toLocaleTimeString() method returns the time portion of a Date object as a string, using locale conventions.
The Date toTimeString() method returns the time portion of a Date object as a string.
The Date toUTCString() method returns a Date object as a string, according to UTC.
The JavaScript parseFloat() method parses a value as a string and returns the first number.