Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get the next character javascript

const str = 'a'
const nextLetter = String.fromCharCode(str.charCodeAt(str.length - 1) + 1)
console.log(nextLetter)
Source by thewebdev.info #
 
PREVIOUS NEXT
Tagged: #character #javascript
ADD COMMENT
Topic
Name
5+8 =