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