Underscore.js es una biblioteca de JavaScript que proporciona una gran cantidad de funciones útiles que ayudan en la programación en gran medida, como el mapa, el filtro, la invocación, etc., incluso sin utilizar ningún objeto integrado.
La función _.create() es una función incorporada en la biblioteca de JavaScript Underscore.js que se usa para crear un nuevo objeto con el prototipo y los accesorios indicados, como su propia propiedad que se adjunta opcionalmente.
Sintaxis:
_.create(prototype, props)
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- prototipo: Es el prototipo a utilizar.
- props: Es propiedad del prototipo utilizado que se adjunta opcionalmente.
Valor devuelto: este método devuelve un nuevo objeto.
Ejemplo 1:
Javascript
<!DOCTYPE html> <html> <head> <script src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> </script> </head> <body> <script> var author_article = [ { author: 'Nidhi1352', articles: 792 }, { author: 'Nisha95', articles: 590 }, { author: 'Rohit01', articles: 450 }]; // Calling create method with its parameter var obj = _.create(author_article.prototype, { author: "Rahul096" }); console.log(obj); </script> </body> </html>
Producción:
{"author":"Rahul096"}
Ejemplo 2:
Javascript
<!DOCTYPE html> <html> <head> <script src= "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> </script> </head> <body> <script> var array = [3, 4, 6, 8, 9] // Calling create method with its parameter var new_obj = _.create(array.prototype, [10]); console.log(new_obj); </script> </body> </html>
Producción:
{"0":10}
Referencia: https://underscorejs.org/#create
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA