Originally posted by wonderboy
View Post
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Technical interviews
Collapse
X
-
Got it. Ok thanks. All objects are reference types and are held on the heap. Moving onto line 2?Knock first as I might be balancing my chakras. -
That is another awesome feature of JavaScript whereby enclosing a function in parens turns it into a function expression, which can then be immediately invoked (turning it into a valid statement).Originally posted by suityou01 View PostAlso line 2 starts with an opening parentheses. How can a statement begin with an opening parenthesis?
I need a lie down.
Comment
-
Ok. Seems horribly backwards. Perhaps I need to understand how not typing things and having undeclared functions is a good thing.Originally posted by wonderboy View PostThat is another awesome feature of JavaScript whereby enclosing a function in parens turns it into a function expression, which can then be immediately invoked (turning it into a valid statement).
Let me look at the original problem now you have demystified the voodoo for me
Knock first as I might be balancing my chakras.Comment
-
Ok not seeing how appVar1 and appVar2 are in any way related? Can we clear this up before we deal with scope?Originally posted by wonderboy View PostHappy to do so. Given the following code (JavaScript), the interviewer claimed that "appVar2" needed to be returned from the function expression (using a "return" statement) to make "MyConstructor" available outside the scope of the closure created by the function expression. He claimed that by injecting appVar1 into the function expression it was being copied, implying that appVar2 referred to a separate object, hence the need to return.
This is a fundamental misunderstanding of the way JavaScript uses "pass reference by value" (described more commonly as "pass by reference") when dealing with objects.
Code:var appVar1 = {}; (function(appVar2){ appVar2.MyConstructor = function() { //... }; })(appVar1);
Mock me all you want!
Ta.Knock first as I might be balancing my chakras.Comment
-
All Objects are reference types but primitives (String, Number, Boolean, null, undefined) are treated as value types (although there are corresponding wrapper Objects for String, Number and Boolean). Placement of strings on stack/heap I suspect involves some clever optimisation (I haven't bothered to ever find out). I wouldn't be surprised if Numbers and Boolean literals are put on the stack directly.Originally posted by suityou01 View PostGot it. Ok thanks. All objects are reference types and are held on the heap. Moving onto line 2?Comment
-
Originally posted by suityou01 View PostOk not seeing how appVar1 and appVar2 are in any way related? Can we clear this up before we deal with scope?
Ta.Code:var appVar1 = {}; //declare object literal (equiv. to "var appVar = new Object();") //wrap an anonymous function in parens to make it an expression, and then invoke immediately on the final line, passing in appVar1 (visible inside the anonymous function as appVar2) (function(appVar2){ //create a property named MyConstructor on appVar2 (which is a reference to the same object as appVar1), and assign an anonymous function to it appVar2.MyConstructor = function() { //... }; })(appVar1); //object "appVar1" now has a new property on it called MyConstructor pointing to the function defined above with the ellipsis inside.Comment
-
Javascript is weird.
So to put it in a less insane way:
And he doesn't understand that x is now part of appVar1?Code:var appVar1 = {}; function fn(appVar2){ appVar2.x = 10; } fn(appVar1)Will work inside IR35. Or for food.Comment
-
Wait, I see it. () is your voodoo on the fly, shot in the arm for unreadable code, function declaration. Appvar2 is the declaration. Appvar1 is the ref, so in theory this is being injected, and the reference holds outside the function declaration.Originally posted by suityou01 View PostOk not seeing how appVar1 and appVar2 are in any way related? Can we clear this up before we deal with scope?
Ta.
The constructor function pointer is also set inside the first function declaration.
tulipty question really. To emphasise the manner of object references, there should really be some code after all this performs an operation on appvar1 that was defined on appvar2.
IMVHO.Knock first as I might be balancing my chakras.Comment
-
Yes. And this was the worlds largest IBank, and they rejected me. But like an earlier poster said, after the interview I didn't want to work there anywayOriginally posted by VectraMan View PostJavascript is weird.
So to put it in a less insane way:
And he doesn't understand that x is now part of appVar1?Code:var appVar1 = {}; function fn(appVar2){ appVar2.x = 10; } fn(appVar1)
Comment
-
Yes JS is weird.Originally posted by VectraMan View PostJavascript is weird.
So to put it in a less insane way:
And he doesn't understand that x is now part of appVar1?Code:var appVar1 = {}; function fn(appVar2){ appVar2.x = 10; } fn(appVar1)
Yes this is exactly it as I understand it.Knock first as I might be balancing my chakras.Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers

Comment