Files
freeCodeCamp/curriculum/challenges/espanol/03-front-end-libraries/redux/get-state-from-the-redux-store.md

1.2 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5a24c314108439a4d403614c Obtén el estado del almacén Redux 6 301443 get-state-from-the-redux-store

--description--

El objeto almacén Redux proporciona varios métodos que permiten interactuar con él. Por ejemplo, puedes recuperar el state actual que tiene el objeto almacén Redux con el método getState().

--instructions--

El código del desafío anterior se reescribe de forma más concisa en el editor de código. Utiliza store.getState() para recuperar el state del store, y asígnalo a una nueva variable currentState.

--hints--

El almacén Redux debe tener un valor de 5 para el estado inicial.

assert(store.getState() === 5);

Debe existir una variable currentState y se le debe asignar el estado actual del almacén Redux.

(getUserInput) =>
  assert(
    currentState === 5 && getUserInput('index').includes('store.getState()')
  );

--seed--

--seed-contents--

const store = Redux.createStore(
  (state = 5) => state
);

// Change code below this line

--solutions--

const store = Redux.createStore(
  (state = 5) => state
);

// Change code below this line
const currentState = store.getState();