Skip to content

Instantly share code, notes, and snippets.

View teo251's full-sized avatar

Kristijan Cincar teo251

  • University of West
  • Timisoara
View GitHub Profile
@a1ip
a1ip / 00-CodeCombat-Kithgard-Dungeon-Campaign.md
Last active January 18, 2024 08:38
CodeCombat Kithgard Dungeon Campaign solutions http://codecombat.com/play/dungeon
###########################
# IF / ELSE / ELSE IF #
###########################
You can make a block of code execute when a conditional expression is true using an if statement.
The conditional expression is the expression surrounded by parenethesis following the word IF.
#IF
var x = 11;
@a1ip
a1ip / js-courses.md
Created March 17, 2016 11:12 — forked from alexbaumgertner/js-courses.md
JavaScript courses as on March 2016
CTRL T - open new tab
CTRL SHIFT T - reopen recently closed tab
CTRL C - copy text
CTRL V - paste text
this.say(3); number
this.say("Ana"); string
var count=0;
while(count<0){
count=count+1;
console.log(count); pikazuje rezultat u consoli od google croma (desni klik na Inspect i Consola)