La tarea es incrementar/disminuir letras alfabéticas utilizando el valor ASCII con la ayuda de JavaScript.
Acercarse:
- Use el método charCodeAt() para devolver el Unicode del carácter en el índice especificado en una string
- Incremente/Disminuya el valor ASCII según el requisito.
- Utilice el método fromCharCode() para convertir valores Unicode en caracteres.
Ejemplo 1: En este ejemplo, el carácter ‘a’ se incrementa haciendo clic en el botón.
<!DOCTYPE HTML> <html> <head> <title> JavaScript method to increment/ decrement letters </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;"> GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var up = document.getElementById('GFG_UP'); var down = document.getElementById('GFG_DOWN'); up.innerHTML = "Click on the button to increment " + "the letter."; down.innerHTML = 'a'; function nextCharacter(c) { return String.fromCharCode(c.charCodeAt(0) + 1); } function GFG_Fun() { var c = down.innerHTML; down.innerHTML = nextCharacter(c); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: En este ejemplo, el carácter ‘z’ se decrementa al hacer clic en el botón.
<!DOCTYPE HTML> <html> <head> <title> JavaScript method to increment/ decrement letters </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;"> GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <button onclick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "color:green; font-size: 20px; font-weight: bold;"> </p> <script> var up = document.getElementById('GFG_UP'); var down = document.getElementById('GFG_DOWN'); up.innerHTML = "Click on the button to decrement " + "the letter."; down.innerHTML = 'z'; function nextCharacter(c) { return String.fromCharCode(c.charCodeAt(0) - 1); } function GFG_Fun() { var c = down.innerHTML; down.innerHTML = nextCharacter(c); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA