Step: String interpolation: \(expr)
String interpolation: \(expr)
Inside a string, \(expr) splices a jq value into the text — cleaner than a chain of +.
Why it matters: interpolation coerces numbers to strings for you; .firstName + .age would error because you can't + a string and a number.
Your turn: produce "Charles is 41" using interpolation.
Input:
Expected:
Step 15 of 27