TWIL 2021-8 (4)
1.2021年JavaScript動向
TypeScript is a superset of JavaScript, meaning it's a layer around JS with more methods and that makes you follow a certain way of development that you don't have to otherwise in vanilla (like having to set the types of your variables).
2. Object.assign()
const initialState = {
form: {
date: [today, today],
},
list: []
};
const slice = createSlice({
name: key,
initialState,
reducers: {
init: draft => {
// draft.form = initialState.form
// draft.list = initialState.list
Object.assign(draft, initialState);
}
}
});
Object.assign()
を一度に処理することができる.Reference
この問題について(TWIL 2021-8 (4)), 我々は、より多くの情報をここで見つけました https://velog.io/@jheeju/TWIL-2021-8-4テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol