-
Notifications
You must be signed in to change notification settings - Fork 0
Stew.entries
github-actions[bot] edited this page Sep 30, 2024
·
4 revisions
list of the stew's entries
type: Array
list: | pair: |
const { Stew } = require('stews');
let arr = new Stew([ 1, 2, 3 ]);
console.log(arr.entries); |
const { Stew } = require('stews');
let obj = new Stew({ key1: "val1", key2: "val2" });
console.log(obj.entries); |
[ ["0", 1], ["1", 2], ["2", 3] ] |
[ ["key1", "val1"], ["key2", "val2"] ] |