Topics Javascript
Topics Javascript
-: String Capturing :-
Hello
fixed() s.fixed() Hello <TT>Hello</TT>
sub() s.sub() Hello <SUB>Hello</SUB>
sup() s.sup() Hello <SUP>Hello</SUP>
fontcolor() s.fontcolor(“red”) <FONT COLOR=“red”>Hello</FONT>
s.fontcolor(“ff0000”) <FONT COLOR=“ff0000”)Hello</FONT>
fontsize() s.fontsize(1) Hello <FONT SIZE=“1”>Hello</FONT>
s.fontsize(7) a big Hello <FONT SIZE=“7”)Hello</FONT>
link() s.link(“www.edu”) Hello <A HREF=”www.edu”>Hello</A>
fromCharCode() String.fromCharCode(65) A Makes a string from the ASCII values. Note it is not used on individual strings, bu
String.fromCharCode(65,66) AB