HN user

nhenezi

3 karma

http://nikola.henezi.com

Posts0
Comments6
View on HN
No posts found.
[GET] "/api/user/nhenezi/stories?hitsPerPage=30&page=0": 500 Failed to fetch user stories

SEEKING WORK - remote (GMT +1)

Mathematician and a full stack dev with sysadmin experience. Worked in many languages and dozen of technologies, too many to count here. If you are looking for someone who can pick up things quickly and be useful from day one contact me.

For more details take a look at my resume: http://nikola.henezi.com/nikola_henezi.pdf

Gihub: https://github.com/nhenezi Email: nikola `at` henezi.com

Keywords: Javascript, react.js, angular.js, socket.io, python, scipy, django, sqlalchemy, php, linux, haskell, mathematics.

SEEKING WORK - remote (GMT +1)

Mathematician and a full stack dev with sysadmin experience. Worked in many languages and dozen of technologies, too many to count here. If you are looking for someone who can pick up things quickly and be useful from day one contact me.

For more details take a look at my resume: http://nikola.henezi.com/nikola_henezi.pdf

Gihub: https://github.com/nhenezi Email: nikola `at` henezi.com

Keywords: Javascript, node.js, react.js, angular.js, socket.io, python, scipy, django, sqlalchemy, php, linux, haskell, mathematics.

why is y defined? its being called out of the block it was declared in?

Javascript doesn't have block scope; above example is equivalent to:

  (function() {
    var x, y;
    x = 1;
    console.log( x );
    if ( x ) {
      y = 2;
    }
  
    console.log( y );
  })()
Variable declarations are always hoisted to the top of containing scope.