Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added transformState #2575

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

Kapidastra
Copy link

No description provided.

Copy link

@loralevitska loralevitska left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost perfect) Let's improve

@@ -5,7 +5,29 @@
* @param {Object[]} actions
*/
function transformState(state, actions) {
// write code here
for (const action of actions) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Destructure action

Comment on lines 12 to 26
break;
case 'removeProperties':
for (const key of action.keysToRemove) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;
case 'clear':
for (const key in state) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add empty line between cases

Suggested change
break;
case 'removeProperties':
for (const key of action.keysToRemove) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;
case 'clear':
for (const key in state) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;
break;
case 'removeProperties':
for (const key of action.keysToRemove) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;
case 'clear':
for (const key in state) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
break;

Comment on lines 21 to 25
for (const key in state) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check redundant this key will be because you loop through it from this object

Suggested change
for (const key in state) {
if (state.hasOwnProperty(key)) {
delete state[key];
}
}
for (const key in state) {
delete state[key];
}

Copy link

@sTorba24 sTorba24 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work!

Copy link

@sTorba24 sTorba24 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GJ 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants