Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Conversion from CamelCase by pdolgov
import assert from "assert";
function fromCamelCase(name: string): string {
return Array.from(name).map((c,i)=>{var a = c.toLowerCase();return c===a||i===0?a:'_'+a;}).join('')
}
console.log('Example:');
console.log(fromCamelCase('MyFunctionName'));
// These "asserts" are used for self-checking
assert.equal(fromCamelCase('MyFunctionName'), 'my_function_name');
assert.equal(fromCamelCase('IPhone'), 'i_phone');
console.log("Coding complete? Click 'Check' to earn cool rewards!");
Feb. 24, 2022