Actualités

codegrid.js is a simple javascript library for efficiently retrieving country code from lat-lng coordinates of a point. The data is encoded in a set of compressed utf-grid json files. The source can ...
Software engineering principles, from Robert C. Martin's book Clean Code, adapted for JavaScript. This is not a style guide. It's a guide to producing readable, reusable, and refactorable software in ...
Any JavaScript function will do so I wrote this function that accepts a single parameter (called name) from the Blazor code: <script> function SayHelloJS(name) { In this function, all I'm going to do ...
Peter looks at how to call a JavaScript function from your TypeScript code and do it in a type-safe way. Along the way, he dramatically simplifies a Backbone application by integrating Knockout. I ...
How to embrace immutability, think functionally, and write code that is easier to understand and test. Topics ... Functional JavaScript: Building data structures from functions. May 2, 2019 5 mins.
JavaScript is dynamically typed and hence lacks the type safety of statically typed languages, leading to suboptimal IDE support, difficult to understand APIs, and unexpected runtime behavior. Several ...