Created
September 17, 2019 13:01
-
-
Save tanvirstreame/bda5520f46a8ae7e1b3b0b3b3de5f9f9 to your computer and use it in GitHub Desktop.
js object keys foreach
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
| Object.keys(formValue).forEach(key => { | |
| if (key !== "steve") { | |
| formValueForState[key] = data[key]; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment