How to use 'match first letter - reverse' in JavaScript

Every line of 'match first letter - reverse' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
51function shiftLetter(original, shift) {
52 if (!original.match(/[a-z]/i)) return original;
53 var newValue = (mapping[original] + shift) % 26;
54 return alphabet[newValue];
55}

Related snippets