Lodash教程

Lodash hasIn method

语法

_.hasIn(object, path)
Checks if path is a direct or inherited property of object.

参数

object (Object) − The object to query. path (Array|string) − The path to check.

输出

(boolean) − Returns true if path exists, else false.

实例

var _ = require('lodash');
var object = _.create({ 'a': _.create({ 'b': 2 }) });
var result = _.hasIn(object, 'a');
console.log(result);
result = _.hasIn(object,   ['a','b']);
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

true
true
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4