Introduction
Basics
Expressions and Operators
Statements
Loops
Function
Strings
Arrays
Script Tag
Console
Alert, Prompt, Confirm
BOM & DOM
Walking the DOM
Events and Other DOM Properties
Practice Problems
Interview Preparation
Problem 17
. Write a program to convert a given string to lowercase.
const name1 = "ANUBHAV TIWARI"; console.log(name1.toLowerCase()); // anubhav tiwari