DEV Community

Eric Bishard
Eric Bishard

Posted on • Edited on

4 1

Hooks Reducer Links

Articles Referenced:
ES5 functions vs. ES6 ‘fat arrow’ functions
Lifting State
K.C. Dodds - App State Management
Array Destructuring
Refs in React
useRef documentation
Web Accessibility Guidebook for Developers

StackBlitz Demos Referenced:
Demo With Prop Drilling
Class Using Context API
Functional Components Using Context API

Hooks Reducer: Demo Starting Point
Hooks Reducer: Add Todo
Hooks Reducer: Complete Todo
Hooks Reducer: DeleteTodo

SurveyJS custom survey software

JavaScript UI Libraries for Surveys and Forms

SurveyJS lets you build a JSON-based form management system that integrates with any backend, giving you full control over your data and no user limits. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more.

Learn more

Top comments (2)

Collapse
 
chenge profile image
chenge

Presentation, where?

var pets = {
  names: ['Baron', 'Chief', 'Axel'],
  owner: 'Jason',
  description: function(){
    return this.names.map((pet)=>{
      return `${this.owner} knows an awesome dog named ${pet}.`
    });
  }
};

pets.description()

Code in the 1st is fun.

Collapse
 
httpjunkie profile image
Eric Bishard

I will link to the presentation!

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay