andThenYouDie

Automation, IT and more.

13 Jul 2011

Uppercase First Letter

Little javascript scriptlet used in OO, to put the first letter of a chaine in Uppercase.

    if (scriptletInput.length>0){
    scriptletResult = scriptletInput.substr(0,1).toUpperCase()+
    scriptletInput.substr(1,scriptletInput.length)
    } else {
    scriptletResult=""
    }