Underscore.JS - metodo di proprietà
Sintassi
_.property(path)
Il metodo di proprietà restituisce una funzione che restituirà la proprietà specificata di un oggetto. Possiamo anche passare proprietà annidate. Vedi l'esempio sotto -
Esempio
var _ = require('underscore');
var student = {name: 'Sam', age: 10, class : {section : 'B'} }
// Example 1: Get name of student
var getName = _.property('name');
console.log(getName(student));
// Example 2: Get section of student
var getSection = _.property(['class', 'section'])
console.log(getSection(student));
Salva il programma sopra in formato tester.js. Eseguire il comando seguente per eseguire questo programma.
Comando
\>node tester.js
Produzione
Sam
B