tech.lgbt is one of the many independent Mastodon servers you can use to participate in the fediverse.
We welcome all marginalized identities. This Mastodon instance is generally for folks who are LGBTQIA+ and Allies with an interest in tech work, academics, or technology in general.

Server stats:

3.1K
active users

it's silly how in JavaScript this

const response = await fetch('http://example.com')
const text = await response.text()
console.log(text)

is identical to this

fetch('http://example.com')
.then((response) => response.text())
.then((text) => { console.log(text) })

and that is identical to this

const text = await fetch('http://example.com').then((response) => response.text())
console.log(text)
example.comExample Domain
Public

JavaScript is all about having 10 ways to do the same thing