Thursday, November 13, 2025
HomeLanguagesJavascriptUnderscore.js _.accessor() Method

Underscore.js _.accessor() Method

The _.accessor() method returns a function that will attempt to look up a given field in the given object.

Syntax:

funct = _.accessor( field_name );

Parameters: 

  • field_name: This method takes the field to be searched in the given object.

Return Value: This method returns a function that will attempt to look up a given field in the given object.

Note: This will not work in normal JavaScript because it requires the underscore.js contrib library to be installed.

underscore.js contrib library can be installed using npm install underscore-contrib –save.

Example 1: In this example, we will see the use of the  _.accessor() Method

javascript




// Defining underscore contrib variable
const _ = require('underscore-contrib');
 
let ob = { gfg: "neveropen" }
let gfgg = _.accessor('gfg');
 
console.log(gfgg(ob));


Output:

neveropen

Example 2: If this function does not find any field then it will return undefined.

javascript




// Defining underscore contrib variable
const _ = require('underscore-contrib');
 
let ob = { gfg: "neveropen" }
let gfgg = _.accessor('neveropen');
 
console.log(gfgg(ob));


Output:

undefined
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11983 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6835 POSTS0 COMMENTS
Umr Jansen
6838 POSTS0 COMMENTS