Underscore.js es una biblioteca en javascript que hace que las operaciones en arrays, strings y objetos sean mucho más fáciles y prácticas. La función _ .isWeakMap() se usa para verificar si el objeto dado es un mapa débil de javascript o no. Al vincular el CDN de underscore.js, el «_» se adjunta al navegador como variable global.
Sintaxis:
_.isWeakMap(object);
Parámetros:
- objeto: es cualquier objeto javascript como array, string, mapas, conjunto, etc.
Devoluciones: Devuelve el valor booleano. Si el objeto es un mapa débil de javascript, devuelve verdadero; de lo contrario, la función devuelve falso.
Algunos ejemplos se dan a continuación para una mejor comprensión de la función.
Ejemplo 1: cuando se proporciona una array, la salida es falsa.
<!DOCTYPE html> <html lang="en"> <head> <meta charMap="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script> //creating a array of size 2 using constructor var obj= new Array(2); //filling value 10in the array obj.fill(5) //using the underscore.js function _.weakMap() var isWeakMap= _.isWeakMap(obj); console.log(isWeakMap) //If the given object is weakMap it prints the object is weak Map. if(isWeakMap) console.log(`The ${obj} is the WeakMap of Javascript.`) else console.log(`The ${obj} is not the WeakMap of Javascript.`) </script> </body> </html>
Producción:
Ejemplo 2:
Cuando se da un conjunto débil, devuelve verdadero.
<!DOCTYPE html> <html lang="en"> <head> <meta charMap="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" > </script> </head> <body> <script> //creating a array of size 2 using constructor var obj= new WeakMap(); //using the underscore.js function _.weakMap() var isWeakMap= _.isWeakMap(obj); console.log(isWeakMap) //If the given object is weakMap it prints the object is weak Map. if(isWeakMap) console.log(`The ${obj} is the WeakMap of Javascript.`) else console.log(`The ${obj} is not the WeakMap of Javascript.`) </script> </body> </html>
Producción: