收集.js |翻转()函数
flip()函数将键与其对应的值交换。在 JavaScript 中,首先将数组转换为集合,然后将函数应用于集合。
句法:
data.flip()
参数:此函数不接受任何参数。
返回值:通过翻转集合返回。
下面的例子说明了collect.js中的flip()函数
示例 1:在此示例中,我们获取一个集合,然后使用flip()函数翻转集合中的键和项目。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
name: 'Jhon ',
number: 000-555,
});
console.log(collection.flip());
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
address : ['311-Street', 'US'],
pin : 2546,
number : 9898-585-598,
});
const X = collection.flip();
console.log(X.all());
输出:
Collection { items: { 'Jhon ': 'name', '-555': 'number' } }
示例 2:
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
address : ['311-Street', 'US'],
pin : 2546,
number : 9898-585-598,
});
const X = collection.flip();
console.log(X.all());
输出:
{ '2546': 'pin', '8715': 'number', '311-Street,US': 'address' }
参考: https ://collect.js.org/api/count.html