javascript strings
// Use other variables in a string
expression = "HERE"
string_with_expression = `string text ${expression} string text`
console.log(string_with_expression)
padded_zeros = String(22).padStart(6, '0')
console.log(padded_zeros);
// Use other variables in a string
expression = "HERE"
string_with_expression = `string text ${expression} string text`
console.log(string_with_expression)
padded_zeros = String(22).padStart(6, '0')
console.log(padded_zeros);