Posts

Showing posts with the label JS. call apply

From novice to JAVA SCRIPT for all

Rapid Javascript Training (Pluralsight) :- https://jsfiddle.net/hanumesh/sqmb4o5b/1/ 1) var total = 5.1 + 3.3      console.log (total); output :-  8.399999999999999 ======================================================================== http://javascriptissexy.com/oop-in-javascript-what-you-need-to-know/ Various ways to create an object:- 1)  ubiquitous object literal pattern :- var myObj = {name: "Richard" , profession: "Developer" }; 2) You can use the prototype pattern, adding each method and property directly on the object’s prototype :-   function Employee() {   Employee.prototype.firstName = "Hanumesh"; }; var hanu = new Employee() console.log (hanu.firstName); 3)  You can also use the constructor pattern, a constructor function (Classes in other languages, but Functions in JavaScript).   function Employee1(name, age) {   this.name = name;   this.age = age; }; var hanu = new Empl...

Front End Developer Interview quiestions- All in single blog

I would like to list down some of the important references for a front end interview preparation All in one https://github.com/h5bp/Front-end-Developer-Interview-Questions/blob/master/src/questions/javascript-questions.md https://frontendmasters.com/books/front-end-handbook/2019/#1.1 React.js https://github.com/sudheerj/reactjs-interview-questions#what-are-pure-components ------------------------------------------------------ Angular8 https://blog.angularindepth.com/whats-new-after-angular-8-28d27ce3348a https://www.javatpoint.com/angular-8 ------------------------------------------------------ JS https://github.com/h5bp/Front-end-Developer-Interview-Questions/blob/master/src/questions/javascript-questions.md https://2ality.com/2014/05/oop-layers.html https://hackr.io/blog/javascript-interview-questions https://www.toptal.com/react/interview-questions https://www.codementor.io/nihantanu/21-essential-javascript-tech-interview-practice-questions-answers-du...