ARTICLES

Latest Articles

Practical guides, tutorials, and insights on AI, agents, Microsoft technologies, enterprise applications, and communication.

JavaScript Promises
JavaScript / Node / React · Oct 30, 2015

JavaScript Promises

JavaScript promises are a way in JavaScript to write asynchronous code in a synchronous way. They are asynchronous callbacks, but in terms of…

Read article →
Namespaces in JavaScript
JavaScript / Node / React · Oct 27, 2015

Namespaces in JavaScript

Namespaces are used to help organize code into logical groups. An example of a namespace is MyCo.ERP.Customers, which may contain code regarding…

Read article →
JavaScript Error Handling
JavaScript / Node / React · Oct 6, 2015

JavaScript Error Handling

JavaScript contains different ways to handle errors. One way is using try/catch/finally. In the example below, variable y does not exist. try…

Read article →
Debugging TypeScript with Google Chrome and Node
JavaScript / Node / React · Oct 2, 2015

Debugging TypeScript with Google Chrome and Node

To debug TypeScript using Visual Studio Code, install the Debugger for Chrome, located at: https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome: You will see the message: The debugger will…

Read article →