-
Are you a great developer?
Categories
- agile (3)
- algorithms (19)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (139)
- micro tutorial (203)
- PHP (110)
- portfolio (5)
- snippets (7)
- video (1)
- web development (167)
- zend framework (81)
Tag Archives: javascript
Computer Algorithms: Bubble Sort
Overview It’s weird that bubble sort is the most famous sorting algorithm in practice since it is one of the worst approaches for data sorting. Why is bubble sort so famous? Perhaps because of its exotic name or because it … Continue reading
Posted in algorithms
Tagged Bubble sort, Discrete mathematics, DOM, famous sorting algorithm, Heapsort, ineffective algorithm, javascript, Mathematics, Merge sort, Order theory, PHP, Quicksort, Selection sort, slow ineffective algorithm, Sort, Sorting, Sorting algorithms, well known sorting algorithm
2 Comments
Does JavaScript undefined Equals undefined?
Weird JS As you know sometimes JavaScript can be weird. Let’s see the following example and let’s try to answer the question: does “undefined” equals “undefined”. What do I mean? First take a look at the following code. var a; … Continue reading
OOP JavaScript: Accessing Public Methods in Private Methods
As you know in JavaScript when you define a variable with the special word “var” the scope of this variable is within the function. So when you simply wite “var a = 5″ the variable named “a” has a global … Continue reading
Posted in javascript, micro tutorial, web development
Tagged Accessing Private, C, Class, Computer programming, Computing, Curly bracket programming languages, javascript, JavaScript programming language, Object-oriented programming, oop, private, public, Scripting languages, Software engineering, Subroutine
2 Comments
A JavaScript Trick You Should Know
JavaScript Strings You should know that in JavaScript you cannot simply write a multilined code chunk, i.e. something like this: var str = ‘hello world’; This will result in an error, which can be a problem when you deal with … Continue reading







