js string cast code example
Example 1: jquery cast to string
value.toString()
String(value)
value + ""
Example 2: js variable to string
`String text ${expression}`
value.toString()
String(value)
value + ""
`String text ${expression}`