JQuery | Método isPlainObject()

Este método isPlainObject() en jQuery se usa para verificar si un objeto es un objeto simple.

Sintaxis:

jQuery.isPlainObject( obj )

Parámetros: este método acepta un solo parámetro que se menciona anteriormente y se describe a continuación:

  • obj: este parámetro contiene el objeto que se verificará para ver si es un objeto simple.

Valor devuelto: Devuelve el valor booleano.

Los siguientes ejemplos ilustran el uso del método isPlainObject() en jQuery:

Ejemplo 1: En este ejemplo, el método isPlainObject() verifica un objeto para ver si es un objeto simple.

<!DOCTYPE html>
<html>
  
<head>
    <meta charset="utf-8">
    <title>JQuery | isPlainObject() method</title>
    <script src=
"https://code.jquery.com/jquery-3.4.1.js">
    </script>
  
</head>
  
<body style="text-align:center;">
  
    <h1 style="color: green"> 
        GeeksforGeeks 
    </h1>
  
    <h3>JQuery | isPlainObject() method</h3>
    <b>Whether '{}' is a Plain Object : </b>
    <p></p>
  
    <script>
        $("p").append("" + $.isPlainObject({}));
    </script>
</body>
  
</html>

Producción:

Ejemplo 2: en este ejemplo, el método isPlainObject() también verifica un objeto para ver si es un objeto simple.

<!DOCTYPE html>
<html>
  
<head>
    <meta charset="utf-8">
    <title>JQuery | isPlainObject() method</title>
    <script src=
"https://code.jquery.com/jquery-3.4.1.js">
    </script>
  
</head>
  
<body style="text-align:center;">
  
    <h1 style="color: green"> 
        GeeksforGeeks 
    </h1>
  
    <h3>JQuery | isPlainObject() method</h3>
    <p id="geek1">
      Whether 'document.location' is a Plain Object: 
    </p>
    <p id="geek2">Whether String is a Plain Object: 
    </p>
    <script>
        
        // Document.location
        $("#geek1").append("" + $.isPlainObject(document.location));
        
        // string = "Shubham_Singh"
        $("#geek2").append("" + $.isPlainObject("Shubham_Singh"));
    </script>
</body>
  
</html>                                      

Producción:

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 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 *