Skip to content

Instantly share code, notes, and snippets.

View SaiAshish9's full-sized avatar
:octocat:
I love simplifying things

SaiAshish SaiAshish9

:octocat:
I love simplifying things
View GitHub Profile
@SaiAshish9
SaiAshish9 / FrontendFrameworksPopularity.md
Created July 22, 2023 12:36 — forked from tkrotoff/FrontendFrameworksPopularity.md
Front-end frameworks popularity (React, Vue, Angular and Svelte)
@SaiAshish9
SaiAshish9 / 1.js
Created May 6, 2023 08:11 — forked from branneman/1.js
JavaScript examples: No coupling, Loose coupling, Tight coupling
{
// Tight coupling from A to B => A needs B to be defined, callable and adhere to an interface
// No coupling from B to A => B does not need A in any way (pure fn)
function a() {
b()
}
function b() {}
}
{