The first question was JavaScript scoping: var x = 9; var module = { x: 81, getX: function() { this.x = 10 return this.x; } }; module.getX(); // nr 1 -> 10 var retrieveX = module.getX; retrieveX(); // nr 2 -> 9 var boundGetX = retrieveX.bind(module); boundGetX(); // nr 3 -> 81 The second question was FizzBuzz again:
Front Interview Questions
38,495 front interview questions shared by candidates
Do you have experience working with Hilton
how would you attach an event to an object
Describe a situation where you've dealt with an angry or volatile customer in detail.
Technical question: write a login form that locks after 5 incorrect tries. Upload creds using ajax.
how I would handle an irate client who was upset that they were charged a $50 cancellation fee
Given a JS object, obj = {a: 1, getA: function() { return this.a } } var get = obj.getA; console.log(get()); what will it print? How will you prevent it to fit undefined?
Are you willing to deal with our rudeness?
What special skills or attributes can you bring to the hotel to benefit the hotel.
Situation, Action-Resukts
Viewing 161 - 170 interview questions