-
Hajipur, Bihar, 844101
Hajipur, Bihar, 844101
JS Basics
JS Variables & Operators
JS Data Types & Conversion
JS Numbers & Math
JS Strings
JS Dates
JS Arrays
JS Control Flow
JS Loops & Iteration
JS Functions
JS Functions
Function Definitions
Function Parameters
Function Invocation
Function Call
Function Apply
Function Bind
Function Closures
JS Arrow Function
JS Objects
JS Objects
JS Object Properties
JS Object Methods
JS Object Display
JS Object Constructors
Object Definitions
Object Get / Set
Object Prototypes
Object Protection
JS Classes & Modules
JS Async Programming
JS Advanced
JS Destructuring
JS Bitwise
JS RegExp
JS Precedence
JS Errors
JS Scope
JS Hoisting
JS Strict Mode
JS this Keyword
JS HTML DOM
DOM Intro
DOM Methods
DOM Document
DOM Elements
DOM HTML
DOM Forms
DOM CSS
DOM Animations
DOM Events
DOM Event Listener
DOM Navigation
DOM Nodes
DOM Collections
DOM Node Lists
JS BOM (Browser Object Model)
JS Window
JS Screen
JS Location
JS History
JS Navigator
JS Popup Alert
JS Timing
JS Cookies
Web Storage API
JS Web APIs
JS AJAX
AJAX Intro
AJAX XMLHttp
AJAX Request
AJAX Response
AJAX XML File
AJAX PHP
AJAX ASP
AJAX Database
AJAX Applications
AJAX Examples
JS JSON
JSON Intro
JSON Syntax
JSON vs XML
JSON Data Types
JSON Parse
JSON Stringify
JSON Objects
JSON Arrays
JSON Server
JSON PHP
JSON HTML
JSON JSONP
JS Canvas
JS Graphics & Charts
JS Basics
JS Variables & Operators
JS Data Types & Conversion
JS Numbers & Math
JS Strings
JS Dates
JS Arrays
JS Control Flow
JS Loops & Iteration
JS Functions
JS Functions
Function Definitions
Function Parameters
Function Invocation
Function Call
Function Apply
Function Bind
Function Closures
JS Arrow Function
JS Objects
JS Objects
JS Object Properties
JS Object Methods
JS Object Display
JS Object Constructors
Object Definitions
Object Get / Set
Object Prototypes
Object Protection
JS Classes & Modules
JS Async Programming
JS Advanced
JS Destructuring
JS Bitwise
JS RegExp
JS Precedence
JS Errors
JS Scope
JS Hoisting
JS Strict Mode
JS this Keyword
JS HTML DOM
DOM Intro
DOM Methods
DOM Document
DOM Elements
DOM HTML
DOM Forms
DOM CSS
DOM Animations
DOM Events
DOM Event Listener
DOM Navigation
DOM Nodes
DOM Collections
DOM Node Lists
JS BOM (Browser Object Model)
JS Window
JS Screen
JS Location
JS History
JS Navigator
JS Popup Alert
JS Timing
JS Cookies
Web Storage API
JS Web APIs
JS AJAX
AJAX Intro
AJAX XMLHttp
AJAX Request
AJAX Response
AJAX XML File
AJAX PHP
AJAX ASP
AJAX Database
AJAX Applications
AJAX Examples
JS JSON
JSON Intro
JSON Syntax
JSON vs XML
JSON Data Types
JSON Parse
JSON Stringify
JSON Objects
JSON Arrays
JSON Server
JSON PHP
JSON HTML
JSON JSONP
JS Canvas
JS Graphics & Charts
Template literals (also known as template strings) allow you to embed variables and expressions inside a string using backticks `
, and ${...}
syntax.
Introduced in ES6, template literals are more flexible than regular strings.
let name = "John";
let greeting = `Hello, ${name}!`; // Output: Hello, John!
✅ Template literals are enclosed in backticks:
`
, not quotes.
Feature | Description | Example |
---|---|---|
Variable interpolation | Embed variables using ${} |
`Hello, ${name}` |
Expression evaluation | Perform operations inside ${} |
`2 + 2 = ${2 + 2}` → 2 + 2 = 4 |
Multiline support | Supports multiline strings without \n |
`Line1\nLine2` prints as two lines |
Function calls | Can call functions inside ${} |
`Welcome ${getName()}` |
let product = "Book";
let price = 299;
let message = `The price of ${product} is ₹${price}.`;
console.log(message); // Output: The price of Book is ₹299
let multiline = `This is line 1
This is line 2`;
console.log(multiline);
let a = 5;
let b = 10;
let result = `The sum of ${a} and ${b} is ${a + b}`;
console.log(result); // "The sum of 5 and 10 is 15"
Q1. How do you include a variable user = "Alice"
in the string "Welcome, Alice!"
using a template literal?
Q2. How do you print a multiline message using a single template string?
Q3. What is the output of this code: `2 + 3 = ${2 + 3}`
?
Q4. How can you display "Total: $100"
by inserting a variable amount = 100
into the string?
Q5. How do you write "Today is Sunday"
using a variable day = "Sunday"
and a template literal?
Q6. How do you call a function getUserName()
inside a template literal to greet the user?
Q7. What happens if you use single or double quotes instead of backticks with ${}
?
Q8. How do you use a template literal to combine two variables: first = "Good"
and second = "Morning"
?
Q9. Write a string using template literals to display "10 * 2 = 20"
by evaluating inside ${}
.
Q10. How do you show "Length of name is 4"
using a variable name = "John"
?
Q1: Which character is used to define a template literal?
Q2: What does `Hello, ${"World"}` return?
Q3: Which of the following is NOT a feature of template literals?
Q4: What is the output of `5 + 3 = ${5 + 3}`?
Q5: Which of the following will correctly output My age is 25?
Q6: How do you write a template string over two lines?
Q7: What is the result of: `The result is ${4 * 5}`?
Q8: Which operator is used inside template literals to insert values?
Q9: What does `Your score is ${score}` return if score = 90?
Q10: Which version of JavaScript introduced template literals?