Become a member
Sign in
Shahid Rahim
Shahid Rahim

Shahid Rahim

63 Following
1 Followers
  • Profile

  • Claps

  • Highlights

Highlighted by Shahid Rahim

See more

From Displaying a preview of an image upload in React by Egor Egorov

handleChange(event) {
this.setState({
file: URL.createObjectURL(event.target.files[0])
})
}

From A simple guide to help you understand closures in JavaScript by Prashant Ram

A closure is a feature in JavaScript where an inner function has access to the outer (enclosing) function’s variables — a scope chain.

From Building a simple REST API: Introduction to NodeJS and Express. by Bilguun Batbold

… will receive a request, process the request and return a response. The requests have 4 main types: GET to retrieve data, POST often used to create entity, PUT often used to update entity and DELETE often used to delete an entity. Let’s create a simple get request:

Claps from Shahid Rahim

See more

A simple guide to help you understand closures in JavaScript

Prashant Ram

Top 10 ES6 features by example

Łukasz Kyć

5 Ways to animate a React app in 2019.

Dmitry Nozhenko