You are here |
blog.stevenlevithan.com | ||
| | | |
abdulapopoola.com
|
|
| | | | We all have to track variables;while debugging; generally the easier it is to monitor changes, the faster bugs can be detected and fixed. Web developer tools expose various methods for tracking changes in variable values. There are a couple of drawbacks e.g. non-uniform support across platforms) but again, half-bread is better than none :). | |
| | | |
jeff.glass
|
|
| | | | Electronics, Making, Software Development, and Amateur Radio from a Midwest Nerd | |
| | | |
javascriptweblog.wordpress.com
|
|
| | | | Compared to other languages, JavaScript's concept of undefined is a little confusing. In particular, trying to understand ReferenceErrors ("x is not defined") and how best to code against them can be frustrating. This is my attempt to straighten things out a little. If you're not already familiar with the difference between variables and properties in... | |
| | | |
ashishvegaraju.com
|
|
| | In my last article about Functional domain modeling, I explored the expressiveness of F# in modeling a domain. I fell in love with the simplicity and expressiveness of the language. In this article I will attempt to explore function purity in F#. In F#, functions are first class citizens because it allows to pass function as an argument to other function, return a function or assign function to a variable. Initially I found it a bit hard to wrap my head around the concept of treating functions as first class citizens. In fact one of the biggest challenge for me was surprisingly not the weird syntax of F#, but to think in terms of functions. |