Skip to content

Instantly share code, notes, and snippets.

@ilkay-alti
Created September 30, 2022 20:33
Show Gist options
  • Save ilkay-alti/d2e64cfb92f126709cfdb5b64b6e0b40 to your computer and use it in GitHub Desktop.
Save ilkay-alti/d2e64cfb92f126709cfdb5b64b6e0b40 to your computer and use it in GitHub Desktop.
// React Native component
const places = {
name: "İlkay",
country: "Turkey"
};
const food = {
name: "Rice"
};
const firstData = ["places", JSON.stringify(places)];
const secondData = ["food", JSON.stringify(food)];
const mergeMultiData = async () => {
try {
await AsyncStorage.multiMerge([firstData, secondData]);
} catch (error) {
console.log(error);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment