José Miguel Álvarez (@jmalvarezdev) 's Twitter Profile
José Miguel Álvarez

@jmalvarezdev

Software Engineer @Shopify

ID: 1547636139376357384

linkhttps://www.jmalvarez.dev/ calendar_today14-07-2022 17:36:36

166 Tweet

32 Takipçi

93 Takip Edilen

José Miguel Álvarez (@jmalvarezdev) 's Twitter Profile Photo

The adapter pattern is a structural design pattern that allows your code to communicate with other interfaces that are initially incompatible. jmalvarez.dev/posts/adapter-… #typescript #javascript #webdevelopment

José Miguel Álvarez (@jmalvarezdev) 's Twitter Profile Photo

The Bridge pattern is a structural design pattern that allows you to separate a big class or set of related classes into two different domains: abstraction and implementation. Learn how to implement it: jmalvarez.dev/posts/bridge-p… #TypeScript #javascript #webdevelopment

Cory House (@housecor) 's Twitter Profile Photo

Just learned JavaScript has logical OR assignment and logical AND assignment! 🔥 Logical AND assignment: x &&= "x is truthy" // assigns if the left side is truthy Logical OR assignment: x ||= "x is falsy" // assigns if the left side is falsy #javascript

Just learned JavaScript has logical OR assignment and logical AND assignment! 🔥

Logical AND assignment: 
x &&= "x is truthy" // assigns if the left side is truthy

Logical OR assignment:
x ||= "x is falsy" // assigns if the left side is falsy

#javascript
José Miguel Álvarez (@jmalvarezdev) 's Twitter Profile Photo

The composite design pattern is a structural pattern which allows you to create tree structures of objects and treat them as a single object. jmalvarez.dev/posts/composit… #typescript #webdevelopment