Cum se pot schimba cheile in obiect JS
Scris: Vin Oct 30, 2020
Am o intrebare. Vreau sa schimb cheile intr-un obiect JavaScript daca valoarea lor e un numar. De exemplu, am urmatorul obiect:
Cum pot face sa rezulte acel obiect asa:
Cod: Selectaţi tot
const order = {
wine : 100,
vodka : 200,
beer : 300,
whisky : "not in stock"
};
Cod: Selectaţi tot
const order = {
is_nr_100 : 100,
is_nr_200 : 200,
is_nr_300 : 300,
whisky : "not in stock"
};