Skip to content

Instantly share code, notes, and snippets.

@sivaprabug
Created January 5, 2020 11:33
Show Gist options
  • Save sivaprabug/8547f5232cc2fe4410fd036b26f19c9c to your computer and use it in GitHub Desktop.
Save sivaprabug/8547f5232cc2fe4410fd036b26f19c9c to your computer and use it in GitHub Desktop.

Revisions

  1. Sivaprabu Ganesan created this gist Jan 5, 2020.
    11 changes: 11 additions & 0 deletions uppercase.js
    Original 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');