Kyle Nunery
  • Home
Sign in Subscribe

basics

A collection of 4 posts
javascript

Understanding Strict Mode in JavaScript

Strict mode is enabled in a JavaScript program by adding a special string constant at the beginning of the program: "use strict"; Also, you can enable strict mode for a function by placing the string constant at the beginning of the function definition. function dodge() { "use strict&
04 Mar 2014 1 min read
javascript

It's Alive!!! Building Objects in JavaScript

It's overwhelming the number of ways you can construct objects in JavaScript. In this article I will tackle the various ways to build objects (including inheritance). The basic techniques for creating objects are: 1. Simple Objects 2. Constructors 3. Simple Inheritance 4. Inheritance method used by CoffeeScript 5.
02 Mar 2014 3 min read
javascript

FizzBuzz in JavaScript using Generators

FizzBuzz A common programming test for job candidates is FizzBuzz. I will show how to solve the FizzBuzz problem using generators in JavaScript. There are some variations on this test but the basics are to print out a sequence of numbers with the following restrictions: * if the number is divisble
18 Feb 2014 1 min read
.net

Viewing Files in the GAC

The GAC can be found at C:\windows\assembly. There is a custom shell extension enabled that prevents you seeing the GAC dlls as you would normally see the file system in Windows Explorer. There are several ways to see the dlls in the GAC. Copy the DLLs to Another
13 May 2013
Page 1 of 1
Kyle Nunery © 2025
Powered by Ghost