Number(141).toString(2);

What I did yesterday?
Worked on the second tutorial project for salesforce

What I’m doing today?
Got over a hurdle with authentication with JSForce package by reading documentation and troubleshooting. Finished second tutorial project

What is blocking me?

Good morning everyone, Welcome to morning standup where we dicuss what we did yesterday and what we plan on doing today, it is Thursday, 5/21. You guys know the drill. __ can you start us off today?

Alright that wraps up the stand up for today, thanks for coming everyone! See you guys tommorrow!

What is state in React?

State of a component is an object that holds some information that may change over the lifetime of the component. We should always try to make our state as simple as possible and minimize the number of stateful components. State is similar to props, but it is private and fully controlled by the component. i.e, It is not accessible to any component other than the one that owns and sets it.

What are props in React?

Props are inputs to components. They are single values or objects containing a set of values that are passed to components on creation using a naming convention similar to HTML-tag attributes. They are data passed down from a parent component to a child component.