GithubHelp home page GithubHelp logo

Comments (5)

bonham000 avatar bonham000 commented on June 22, 2024

The concat method is an immutable operation, based on how the JS spec is written: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat

This is generally acceptable for immutable operations on arrays of data, like the ones described here.

from fcc-react-tests-module.

japickering avatar japickering commented on June 22, 2024

@bonham000 True and I have used concat() before but in the Mozilla dev link you've quoted the data arrays are explicitly documented in the code example so it's obvious that 2 arrays need to be combined together.

In this Redux challenge the learner has no such information about the problem. The answer was passing a todo action into a state.concat() but how would you even know that the todo action is in array format to arrive at the solution to it?

e.g. if you do this:
const immutableReducer = (state = ['Do not mutate state!'], action) => { switch(action.type) { case ADD_TO_DO: console.log(action.todo); return state.concat(action.todo); default: return state; } };

You get this in the console log:
TEST__TO__DO

from fcc-react-tests-module.

bonham000 avatar bonham000 commented on June 22, 2024

@japickering I think you have some valid points here. I just made some updates to the challenge. Take a look and let me know what you think! Thanks for bringing this up.

from fcc-react-tests-module.

japickering avatar japickering commented on June 22, 2024

@bonham000 Thanks Sean that's much clearer. If I do console.log(state.concat(action.payload));
I get the following code..
["Go to the store", "Clean the house", "Cook dinner", "Learn to code", "__TEST__TO__DO__"]

from fcc-react-tests-module.

bonham000 avatar bonham000 commented on June 22, 2024

Great! I'm going to close this now. Please let me know if you find anything else that you think should be improved.

from fcc-react-tests-module.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.