JavaScript

Switch

function convert(x){
        switch(typeof x) {
        case 'number':
                return x.toString(16);
        case 'string':
                return '"' + x + '"';
        case 'boolean':
                return x.toString().toUpperCase();
        default:
                return x.toString();
        }
}

José M. Vidal .

27 of 65