¿Cómo hacer que Array.indexOf() no distinga entre mayúsculas y minúsculas en JavaScript?

La tarea es hacer que el método Array.indexOf() no distinga entre mayúsculas y minúsculas. Estas son algunas de las técnicas más discutidas con la ayuda de JavaScript.

El método .toLowerCase(): Transforme la string de búsqueda y los elementos de la array a minúsculas usando el método .toLowerCase(), luego realice la búsqueda simple. El siguiente ejemplo ilustra el método.

Ejemplo 1:

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        How to use Array.indexOf() case
        insensitive in JavaScript ?
    </title>
</head>
  
<body style="text-align:center;">
      
    <h1 style="color: green"> 
        Geeksforgeeks 
    </h1>
      
    <p id="GFG_UP" style=
        "font-size: 20px;font-weight: bold;">
    </p>
      
    <button onclick="gfg_Run()">
        Click Here
    </button>
      
    <p id="GFG_DOWN" style="color:green;
                            font-size: 26px; 
                            font-weight: bold;">
    </p>
    <script>
        var el_up = document.getElementById("GFG_UP");
        var el_down = document.getElementById("GFG_DOWN");
          
        var arr = ['GFG_1', 'geeks',
            'Geeksforgeeks', 'GFG_2', 'gfg'];
          
        var el = 'gfg_1';
          
        el_up.innerHTML = "Click on the button for "
                + "case-insensitive search. <br>Array = '"
                + arr + "'<br>Element = '" + el + "'";
  
        function gfg_Run() {
            res = arr.findIndex(item => 
                el.toLowerCase() === item.toLowerCase());
              
            el_down.innerHTML = "The index of '" + 
                        el + "' is '" + res + "'.";
        }
    </script>
</body>
  
</html>

Producción:

El método .toUpperCase(): Transforme la string de búsqueda y los elementos de la array a mayúsculas usando el método .toUpperCase(), luego realice la búsqueda simple. El siguiente ejemplo ilustra este método.

Ejemplo 2:

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        How to use Array.indexOf() case
        insensitive in JavaScript ?
    </title>
</head>
  
<body style="text-align:center;">
    <h1 style="color: green"> 
        GeeksforGeeks 
    </h1>
      
    <p id="GFG_UP" style="font-size:20px;
                        font-weight: bold;">
    </p>
      
    <button onclick="gfg_Run()">
        Click Here
    </button>
      
    <p id="GFG_DOWN" style="color:green;
            font-size: 26px; font-weight: bold;">
    </p>
      
    <script>
        var el_up = document.getElementById("GFG_UP");
        var el_down = document.getElementById("GFG_DOWN");
      
        var arr = ['GFG_1', 'geeks',
                'GeeksforGeeks', 'GFG_2', 'gfg'];
          
        var el = 'gfg_1';
          
        el_up.innerHTML = "Click on the button for "
                + "case-insensitive search. <br>Array = '"
                + arr + "'<br>Element = '" + el + "'";
  
        function gfg_Run() {
            var res = arr.find(key => key.toUpperCase() === 
                            el.toUpperCase()) != undefined;
            if (res) {
                res = 'present';
            } else {
                res = 'absent';
            }
            el_down.innerHTML = "The element '" + el
                + "' is '" + res + "' in the array.";
        }
    </script>
</body>
  
</html>

Producció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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *