PlentyCode (@plentycode_) 's Twitter Profile
PlentyCode

@plentycode_

Engineering ready to scale.

No need for recruiting, hiring, training, or managing engineers, you only pay for the engineering time you really need.

ID: 127305140

linkhttp://plentycode.com calendar_today28-03-2010 19:28:06

180 Tweet

231 Followers

470 Following

Cory House (@housecor) 's Twitter Profile Photo

JavaScript tip: You might not need an if statement or a ternary. JS has Nullish coalescing assignment. Example: user.age ??= 'unknown age'; More: developer.mozilla.org/en-US/docs/Web… #javascript

JavaScript tip: You might not need an if statement or a ternary.

JS has Nullish coalescing assignment.

Example: user.age ??= 'unknown age'; 

More: developer.mozilla.org/en-US/docs/Web…

#javascript
George Moller (@_georgemoller) 's Twitter Profile Photo

A question I get asked a lot.... like a lot!, free hosting platforms. Here is a list of 10: 1. netlify .com 2. aws .amazon .com 3. pages .github . com 4. heroku .com 5. vercel .com 6. firebase. google .com 7. cloud .google .com 8. awardspace .com 9. surge .sh 10. render .com

PlentyCode (@plentycode_) 's Twitter Profile Photo

Typescript tip: Did you know you can use the 'keyof' operator to get a union of all the keys in an object? It's a great way to ensure type safety in your code! #typescript #tips

Typescript tip: Did you know you can use the 'keyof' operator to get a union of all the keys in an object? It's a great way to ensure type safety in your code! #typescript #tips
PlentyCode (@plentycode_) 's Twitter Profile Photo

Get the engineering resources you need, when you need them, with Engineering as a Service! Check out our latest article to learn how PlentyCode can help your business succeed linkedin.com/pulse/engineer…

PlentyCode (@plentycode_) 's Twitter Profile Photo

Get your types in check with TypeScript's higher-order types! Use Partial, Readonly, and Pick to create flexible new types from existing ones. #TypeScript #advancedtip #CodeTip

Get your types in check with TypeScript's higher-order types! Use Partial, Readonly, and Pick to create flexible new types from existing ones. #TypeScript #advancedtip #CodeTip
Steve (Builder.io) (@steve8708) 's Twitter Profile Photo

Everything you didn't know you need to know about buttons Yes, buttons More surprises in my full blog post: builder.io/blog/buttons

sami πŸƒπŸ½β€β™‚οΈπŸ‘Ή (@samijaber_) 's Twitter Profile Photo

If you're a frequent console.log() user, make sure to: - wrap variables in an object - prefix with a unique string This makes it way easier to find your log in the console and prevents confusion when printing multiple similar variables. Read more here: builder.io/blog/console-l…