In this JavaScript lesson we take a look at String Interpolation on Codecademy. We learn that ES6 JavaScript 2022 has something called String Interpolation using template literals. String Interpolation allows us to insert variables into strings. For our instruction lesson we are asked to create two variables, myName and myCity, and then interpolate, or insert them into a string. We learn that when using string interpolation, the string must be wrapped by backticks. An example of a template literal is given to us which is, ${myPet} and it holds our variable value. When we add the template literal inside a string wrapped in backticks, we are then able to access the variable value and add it into the string. Understanding string interpolation and template literals in 2022 using JavaScript is vital and fundamental in continuing our JavaScript Programming in 2022 and beyond! Please embed this information into your being before continuing onto the next lesson!