I am in the learning stage of coding for Web. Here is my Code. I placed in bold and italic function that is not working.
<html>
<head>
<title>JavaScri pt Business Cards</title></head>
<body>
<h1>JavaScrip t Business Cards</h1>
<p>The Script Begins Here.</p><hr>
<script language= "JavaScript " type="text/javascript" src="Print_Card _Modified.js">
</script>
<p>The End of the Script.</p>
<script language="JavaS cript" type="text/javascript">
//Adding a function to change sting appearance
function addHead(level){
html ="h" + level;
text = this.toString() ;
start = "<" + html + ">";
end= "</"+ html + ">";
return start + text + end;
}
Sting.prototype .heading = addHead;
document.write( "this is modified text".heading(1 ));</script>
</body>
</html>
<html>
<head>
<title>JavaScri pt Business Cards</title></head>
<body>
<h1>JavaScrip t Business Cards</h1>
<p>The Script Begins Here.</p><hr>
<script language= "JavaScript " type="text/javascript" src="Print_Card _Modified.js">
</script>
<p>The End of the Script.</p>
<script language="JavaS cript" type="text/javascript">
//Adding a function to change sting appearance
function addHead(level){
html ="h" + level;
text = this.toString() ;
start = "<" + html + ">";
end= "</"+ html + ">";
return start + text + end;
}
Sting.prototype .heading = addHead;
document.write( "this is modified text".heading(1 ));</script>
</body>
</html>
Comment