The Challenge: [crayon-5ad8ebf2a5ccb913268635/] The solution should return: [crayon-5ad8ebf2a5cdb399494826/] Some helpful links: String.prototype.split() Array.prototype.slice() Object.prototype.toString() String.prototype.toLowerCase() String.prototype.toUpperCase() Array.prototype.slice() String.prototype.replace() String.prototype.charAt() Array.prototype.push() Starter Code: [crayon-5ad8ebf2a5ce4148245222/] What my solution should achieve: Should return the first letter ... Continue Reading
regular expression
Pig Latin
The Challenge: [crayon-5ad8ebf2a6ec0812709534/] The solution should return: [crayon-5ad8ebf2a6ecb686819789/] Some helpful links: Array.prototype.indexOf() Array.prototype.push() Array.prototype.join() String.prototype.substr() String.prototype.split() JavaScript Switch Statement switch String.prototype.search Starter Code: [crayon-5ad8ebf2a6ed4473578851/] What my solution should achieve: Translate the provided string into pig latin. This means taking the first consonant (or ... Continue Reading