Untitled

 avatar
unknown
plain_text
a year ago
454 B
7
Indexable
<html>
<head>
<h1>String manipulation</h1>
</head>
<body>
<script>
var x="cse";
var y="second year";
var z=new String("c-section");
document.write(x+"<br>");
document.write(x+" "+y+"<br>");
document.write(z+"<br>");
document.write(x.charAt(1)+"<br>");
document.write(x.indexOf("E")+"<br>");
document.write(x.toLowerCase()+"<br>");
document.write(y.toUpperCase()+"<br>");
document.write(z.slice(3,5)+"<br>");
</script>
</body>
</html>
Editor is loading...
Leave a Comment