Skip to content

Instantly share code, notes, and snippets.

View funmiayinde's full-sized avatar

Funmi ayinde funmiayinde

View GitHub Profile
@funmiayinde
funmiayinde / nigeria-state-and-lgas.json
Created September 17, 2021 02:39 — forked from devhammed/nigeria-state-and-lgas.json
Nigeria States and LGAs in one JSON file
[
{
"state": "Adamawa",
"alias": "adamawa",
"lgas": [
"Demsa",
"Fufure",
"Ganye",
"Gayuk",
"Gombi",

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? ☆☆

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com