Lodash _.prototype.commit() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.prototype.commit()方法用于实现链式序列类型并找到包装后的输出。
句法:
_.prototype.commit()
参数:此方法不接受任何参数。
返回值:此方法返回新的 lodash 包装器实例。
示例 1:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Creating an array of integers
var arr = [5, 6];
// Pushing an integer into the array
var wrapper = _(arr).push(7);
// Using the commit() method
wrapper = wrapper.commit();
// Displays output
console.log(arr);
Javascript
// Requiring lodash library
const _ = require('lodash');
// Creating an array of strings
var arr = ['Geeks', 'for'];
// Pushing a string into the array
var wrapper = _(arr).push('Geeks');
// Using the commit() method
wrapper = wrapper.commit();
// Displays output
console.log(arr);
Javascript
// Requiring lodash library
const _ = require('lodash');
// Using the commit() method
obj = _(['G', 'f']).reverse().commit();
// Displays output
console.log(obj);
输出:
[ 5, 6, 7 ]
示例 2:
Javascript
// Requiring lodash library
const _ = require('lodash');
// Creating an array of strings
var arr = ['Geeks', 'for'];
// Pushing a string into the array
var wrapper = _(arr).push('Geeks');
// Using the commit() method
wrapper = wrapper.commit();
// Displays output
console.log(arr);
输出:
[ 'Geeks', 'for', 'Geeks' ]
示例 3:在此示例中,返回包装器对象。
Javascript
// Requiring lodash library
const _ = require('lodash');
// Using the commit() method
obj = _(['G', 'f']).reverse().commit();
// Displays output
console.log(obj);
输出:
LodashWrapper {
__wrapped__: [ 'f', 'G' ],
__actions__: [],
__chain__: false,
__index__: 0,
__values__: undefined
}