Talks about HTMLayout

Here is a translation of the interview in Russian I gave to Alexander Sergeev from the HumanoIT. Alexander Sergeev(AS) says: My long time dream – to write a shareware program and sell it through the Internet: cash out, Brazil, Maldives, Tokyo, beaches, skiing, casinos… ahhh. This summer I almost brought it to reality… all thanks…

JavaScript functions, named parameters.

JavaScript does not support named parameters. For example following will not work in JS: var something = foo( one: 1, two: “2” ); As a workaround people use functions that accept single parameter – object reference: var something = foo( { one: 1, two: “2” } ); but I think such notation is not good…