🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## toPairs + [link](./toPairs "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L11725 "View in source.") + [npm](https://www.npmjs.com/package/lodash.topairs "See the npm package.") ``` _.toPairs(object) ``` 创建一个对象自身可枚举属性的键值对数组。 ### 参数 1. object (Object) 要检索的对象 ### 返回值 (Array) 返回键值对的数组 ### 示例 ``` function Foo() { this.a = 1; this.b = 2; } Foo.prototype.c = 3; _.toPairs(new Foo); // => [['a', 1], ['b', 2]] (无法保证遍历的顺序) ```