Skip to content

Instantly share code, notes, and snippets.

View hatemcode's full-sized avatar
🎯
Focusing

Hatem Al Amri hatemcode

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am hatemcode on github.
  • I am hatem (https://keybase.io/hatem) on keybase.
  • I have a public key whose fingerprint is AEF6 257C 0712 128B 7921 97B8 9A1C 70A3 887F EF34

To claim this, I am signing this object:

@hatemcode
hatemcode / stack.js
Created September 6, 2016 17:58
Javascript Stack
/**
* @Javascript Stack
* @author Hatem A. <hatem@tuta.io>
*/
var Stack = function() {
var elements = [];
var top = 0;
@hatemcode
hatemcode / month-name.js
Last active September 4, 2016 16:59
Month Name Function in Javascript
/**
* @Month Name Javascript
* @author Hatem A. <hatem@tuta.io>
*/
function monthName(num){
num = parseInteger(num);
var month;