Practice Set String(COH)
let prompt = require("prompt-sync")();
let alert = require("prompt-sync")({ sigint: true });
//Q1
let name = "Deba\"datta"
console.log(name.length)
//Q3
let friend = "Mahesh"
console.log(friend.toLowerCase())
//Q4
let str = "Please give Rs 1000"
let amount = str.slice(15)
console.log(amount)
//Q6
let buddy = "Jyoti"
buddy[3] = "P"
//String is immutable
Comments
Post a Comment