Presentations tagged computer science
computer science elsewhere
Other relevant things on computer science you might find valuable.
JavaScript, when is this?
For me, the trouble was always that this is contextual, but that context isn’t meaningful to us developers so much…
Read MoreConverting values to strings in JavaScript
Source: Converting values to strings in JavaScript
Read MoreWhen to use map() vs. forEach()
I saw this post on Reddit about a JavaScript coding assessment and it got me thinking. A common task developers…
Read MoreTuring Machines
By the end of this post, you will know: What a Turing machine is. What can and cannot be computed.…
Read MoreWill we care about frameworks in the future?
I’m of the belief that software development is entering a radical shift that is currently driven by agents like Replit’s…
Read MoreJavaScript’s ??= Operator: Default Values Made Simple
A guide to using ??= in JavaScript to handle null and undefined values elegantly The nullish coalescing assignment operator ??=…
Read MoreExploring the browser rendering process
What occurs between typing a URL in your browser and the moment a webpage is displayed? Let’s explore the complex…
Read MoreA guide to destructuring in JavaScript – Piccalilli
A destructuring assignment allows you to extract individual values from an array or object and assign them to a set…
Read More