r/ProgrammerHumor 3d ago

Meme ancientTools

Post image
5.8k Upvotes

387 comments sorted by

View all comments

6

u/Worse_Username 3d ago

Aren't more or less all features it grants in base JS now?

6

u/shadowspock 2d ago

Can't chain methods in vanilla JS

1

u/Agfa100asa 2d ago

???

1

u/shadowspock 1d ago

In jQuery you can chain methods like this:

$('#id').addClass('red').prop('hidden', false).val('warning').attr('data-something', 1234);

Can't do that in vanilla JS.

1

u/Agfa100asa 1d ago

yes you can.
const personne = {
nom: "Alice",

direBonjour() {
console.log(`Bonjour ${this.nom}`);
return this;
},

direAuRevoir() {
console.log(`Au revoir ${this.nom}`);
return this;
}
};

personne
.direBonjour()
.direAuRevoir();