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
Thu, May 29, 2025, 12:18:26 AM
Problem 17
. Write a program to convert a given string to lowercase.
const
name1
=
"ANUBHAV TIWARI"
;
console
.
log
(
name1
.
toLowerCase
(
)
)
;
// anubhav tiwari
Copy