c# interpolation string code example

Example 1: c sharp string interpolation

// To use interpolation in strings, put the name of the relevant
// variable between brackets {} and put a dollar sign $ in front
// of the string. This will tell C# to use interpolation.
double a = 3;
double b = 4;
Console.WriteLine($"Area of {a} and {b} is {0.5 * a * b}");

Example 2: string interpolation javascript

const age = 3
console.log(`I'm ${age} years old!`)

Example 3: string interpolation in javascript

const number = 42;
const message = `The number is ${number}`;

message; // => 'The number is 42'