May 18, 2023
Program to use String Operator JavaScript Language
let a = "JavaScript Program";
console.log(a);
Output
JavaScript Program
Steps Description
- Declare variable
a
- Initialize variable with value of "JavaScript Program"
a = "JavaScript Program"
Strig Operaters
This is a sequence of letters Strings are written inside single or double quotes.- The value of
a
variable is displayed with the help of console.log inbuilt function
by : Suhel Akhtar
Quick Summary:
String Operator JavaScript Language Example