Created
January 5, 2020 11:33
-
-
Save sivaprabug/8547f5232cc2fe4410fd036b26f19c9c to your computer and use it in GitHub Desktop.
Revisions
-
Sivaprabu Ganesan created this gist
Jan 5, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ function siva(value){ if(!value) return ''; value = value.toString(); var a = value.charAt(0).toUpperCase()+value.slice(1)+'<br>'; document.write(a); } siva('Sivaprabu Ganesan'); siva('<br>'); siva('@$@$@$'); siva('a$lert'); siva('Sivaprabu Ganesan');