You are here |
www.oranlooney.com | ||
| | | |
gameprogrammingpatterns.com
|
|
| | | | ||
| | | |
www.integralist.co.uk
|
|
| | | | Introduction What is JavaScript Terminology Global Object Variables Types Objects Arrays Conditional Statements Coercion Functions Code Reuse (inheritance) Conclusion Introduction I've written this very brief guide to JavaScript just as an aid for people new to the language and who need a basic starting point to see what the syntax looks like and to get a feeling for some of its features. This article's main purpose is to give readers new to the language a glimpse of the JavaScript environment and to hop... | |
| | | |
blog.mgechev.com
|
|
| | | | On 18th of September 2014 was pushed the initial commit of version 2.0 of the AngularJS framework. A few weeks ago the core team at Google, published AngularJS' 2.0 website and gave a couple of talks on ng-conf about their new router, change detection, templating, etc. I'm passionate about AngularJS since its early versions so I decided give it a try using the quick start. In the meantime I and also created an angular2-seed project for my test, dummy projects. | |
| | | |
nurkiewicz.com
|
|
| | Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`. |