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