↳
How long do they take to announce results of quiz round?
↳
As soon as you submit the quiz u will get the mail... May be if you get shortlisted otherwise i don't know Minder
↳
Ty for your response. Do they confirm if I'm selected or not selected by mail?
↳
function sum(x) { return function(y) { return function(z){ return function(w){ return function(){ return x + y + z + w; } } } } } Minder
↳
var sum = (n) => { let result = n; const fn = (n) => { if (n == null) { return result; } result += n; return fn; } return fn; } Minder
↳
const sum = (n, res = 0) => ( n == null ? res : (x) => sum(x, res + n) ); Minder
↳
Positive
↳
Only that's been asked ;) you even did not read the resume.
↳
Thanks for highly interesting in my skills
↳
It will give compile time error, as you are using a variable outside of its scope. Minder
↳
I was not able to answer this
↳
Array.prototype.myFilter = function(callback){ var filteredArray = []; for(var i=0;i{ return el % 2 === 0 }) console.log(filteredArray) Minder
↳
While adding answer to this question it was added incompletely. Hence adding here again Array.prototype.filter = null; if (!Array.prototype.filter) { Array.prototype.filter = function (callback) { var filtered = []; for (var i = 0; i el % 2 === 0); console.log(filteredArr) Minder
↳
I explained that although the challenge ideally required writing to/from disk for a "perfect solution", Javascript typically gets it's data input via HTTP, and displays its output via the browser, so that was how I would proceed with my solution. Minder
↳
Node
↳
There's quite an extended back and forth in actual interviews for questions like this, so nothing quite like real practice. The Prepfully Atlassian Frontend Software Engineer experts have actually worked in this role, so they're able to do an honest-to-God accurate mock, which really puts you through the paces. prepfully.com/practice-interviews Minder
↳
Do projects with a framework for your choice. Understand how to use the debugger and browser tools. Minder
↳
No
↳
No for AND both conditions should be true.
↳
I was not able to meet this requirement because of my current location.
↳
Yes...
↳
It's a rule in CSS to provide priority of interpretation to blocks of style. For example, if you have a DIV element with an ID "example" and a class name "example", and in the stylesheet you have: #example{ background-color: red; } .example{ background-color: green; } The DIV's background color would be red, violating the natural reading flow of the stylesheet (top down), because IDs have higher specificity than classes, which could not override the previous style selected by an ID. Minder
↳
It is used to give the styles to the web page