How to add a new key value to react js state array?
问题 I want to add new key value to array ınto state? I tell you what I want to do below. How can I do that? 1. Start state in consruture method `this.state = { files: [] }' After I doing set state with active files this.setState({files: activeFiles}) Screen my state { files: [ { key1: val1, key2: val2, key3: val3 }, { key1: val1, key2: val2, key3: val3 }, { key1: val1, key2: val2, key3: val3 } ] } How to add new key value for each file? The state I want { files: [ { key1: val1, key2: val2, key3: