Last active
April 6, 2022 05:47
-
-
Save ratul16/45144b425c8d1cae62501175b453750a to your computer and use it in GitHub Desktop.
filter out selected keys from object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const formKeys = ['key1', 'key2', 'key3'] | |
formKeys.forEach(key => { | |
this.testData[key] = mainData[key] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment