javascript面试_在编码面试中需要注意的3个JavaScript问题

javascript面试

JavaScript is the official language of all modern web browsers. As such, JavaScript questions come up in all sorts of developer interviews.

JavaScript是所有现代Web浏览器的官方语言。 因此,各种开发人员访谈中都会出现JavaScript问题。

This article isn’t about the newest JavaScript libraries, common development practices, or any of the new ES6 functions. Rather, it’s about 3 things that usually come up in interviews when discussing JavaScript. I myself have been asked these questions, and my friends have told me they’ve been asked them, too.

本文不是关于最新JavaScript库,常见的开发实践或任何新的ES6函数 。 相反,在讨论JavaScript时,通常在采访中会涉及到三件事。 我自己也被问过这些问题,我的朋友们也告诉我他们也被问过这些问题。

Of course these aren’t the only 3 things you should study before a JavaScript interview — there are a multitude of ways you can better prepare for an upcoming interview — but below are 3 questions an interviewer may ask to judge how well you know and understand the JavaScript language and the DOM.

当然,这些并不是您在JavaScript面试之前应该学习的唯一三件事-有多种 方法 可以更好地为即将到来的面试做准备-但是以下是面试官可能要问的三个问题,以判断您对自己的了解和了解的程度JavaScript语言和DOM 。

So let’s get started! Note that we’re going to use vanilla JavaScript in the examples below, since your interviewer will usually want to see how well you understand JavaScript and the DOM without the help of libraries like jQuery.

因此,让我们开始吧! 请注意,在下面的示例中,我们将使用原始JavaScript,因为您的访问员通常会希望在没有jQuery之类的帮助的情况下,了解您对JavaScript和DOM的理解程度。

问题1:事件委托 (Question 1: Event delegation)

When building an application, sometimes you’ll need to attach event listeners to buttons, text, or images on the page in order to perform some action when the user interacts with the element.

在构建应用程序时,有时您需要将事件侦听器附加到页面上的按钮,文本或图像上,以便在用户与元素进行交互时执行某些操作。

If we take a simple todo list as an example, the interviewer may tell you that they want an action to occur when a user clicks one of the list items. And they want you to implement this functionality in JavaScript assuming the following HTML code:

如果我们以一个简单的待办事项列表为例,访问者可能会告诉您,当用户单击列表项之一时,他们希望采取某种措施。 他们希望您假设以下HTML代码在JavaScript中实现此功能:

You may want to do something like the following to attach event listeners to the elements:

您可能需要执行以下操作,将事件侦听器附加到元素:

While this does technically work, the problem is that you’re attaching an event listener to every single item individually. This is fine for 4 elements, but what if someone adds 10,000 items (they may have a lot of things to do) to their todo list? Then your function will create 10,000 separate event listeners and attach each of them to the DOM. This isn’t very efficient.

尽管这在技术上是可行的,但问题是您将事件侦听器分别附加到每个项目。 这对于4个元素来说很好,但是如果有人将10,000个项目(他们可能有很多事情要做)添加到他们的待办事项列表中怎么办? 然后,您的函数将创建10,000个独立的事件侦听器,并将每个侦听器都附加到DOM。 这不是很有效 。

In an interview it would be best to first ask the interviewer what the maximum number of elements the user can enter is. If it can never be more than 10, for example, then the above code would work fine. But if there’s no limit to the number of items the user can enter, then you’d want to use a more efficient solution.

在采访中,最好先问问采访者,用户可以输入的最大元素数是多少。 例如,如果它不能超过10,那么上面的代码将可以正常工作。 但是,如果用户可以输入的项目数没有限制,那么您想使用更有效的解决方案。

If your application could end up with hundreds of event listeners, the more efficient solution would be to actually attach one event listener to the whole container, and then be able to access each item when it’s actually clicked. This is called event delegation, and it’s much more efficient than attaching separate event handlers.

如果您的应用程序最终可能包含数百个事件侦听器,则更有效的解决方案是将一个事件侦听器实际附加到整个容器,然后在实际单击每个项目时便能够访问它们。 这称为事件委托 ,它比附加单独的事件处理程序效率更高。

Here’s the code for event delegation:

这是事件委托的代码:

问题2:在循环中使用闭包 (Question 2: Using a closure within a loop)

Closures are sometimes brought up in an interview so that the interviewer can gauge how familiar you are with the language, and whether you know when to implement a closure.

有时会在面试中提出封闭方式,以便访问员可以评估您对语言的熟悉程度以及是否知道何时实施封闭。

A closure is basically when an inner function has access to variables outside of its scope. Closures can be used for things like implementing privacy and creating function factories. A common interview question regarding the use of closures is something like this:

闭包基本上是指内部函数可以访问其范围之外的变量。 闭包可以用于实现隐私和创建功能工厂之类的事情。 有关使用闭包的常见采访问题是这样的:

Write a function that will loop through a list of integers and print the index of each element after a 3 second delay.

编写一个将遍历整数列表并在3秒的延迟后打印每个元素的索引的函数。

A common (incorrect) implementation I’ve seen for this problem looks something like this:

我为这个问题所见的常见(错误)实现看起来像这样:

If you run this you’ll see that you actually get the 4 printed out every time instead of the expected 0, 1, 2, 3 after a 3 second delay.

如果运行此命令,则会看到您实际上每次都打印了4个 ,而不是在3秒钟的延迟后输出了预期的0、1、2、3

To correctly identify why this is happening it would be useful to have an understanding of why this happens in JavaScript, which is exactly what the interviewer is trying to test.

要正确确定这种情况的发生原因,有必要了解JavaScript中这种情况发生的原因,这正是访问员试图测试的原因。

The reason for this is because the setTimeout function creates a function (the closure) that has access to its outer scope, which is the loop that contains the index i. After 3 seconds go by, the function is executed and it prints out the value of i, which at the end of the loop is at 4 because it cycles through 0, 1, 2, 3, 4 and the loop finally stops at 4.

其原因是因为setTimeout函数创建了一个可以访问其外部作用域的函数(闭包),该外部作用域是包含索引i的循环。 经过3秒钟后,该函数将执行并打印出i的值,该值在循环结束时为4,因为它在0、1、2、3、4之间循环,最终循环在4处停止。

There are actually a few ways of correctly writing the function for this problem. Here are two of them:

实际上, 有几种方法可以正确编写此问题的函数。 这是其中两个:

问题3:反跳 (Question 3: Debouncing)

There are some browser events that can fire many times within a short timespan very quickly, such as resizing a window or scrolling down a page. If you attach an event listener to the window scroll event for example, and the user continuously scrolls down the page very quickly, your event may fire thousands of times within the span of 3 seconds. This can cause some serious performance issues.

有些浏览器事件可以在很短的时间内Swift触发多次,例如调整窗口大小或向下滚动页面。 例如,如果将事件侦听器附加到窗口滚动事件,并且用户连续快速向下滚动页面,则您的事件可能会在3秒的跨度内触发数千次。 这可能会导致一些严重的性能问题。

If you’re discussing building an application in an interview, and events like scrolling, window resizing, or key pressing come up, make sure to mention debouncing and/or throttling as a way to improve page speed and performance. A real example taken from this guest post on css-tricks:

如果您在面试中讨论如何构建应用程序,并且出现诸如滚动,窗口大小调整或按键之类的事件,请确保提及反跳和/或调节,以提高页面速度和性能。 一个真实的例子来自于这个关于css-tricks的来宾帖子 :

In 2011, an issue popped up on the Twitter website: when you were scrolling down your Twitter feed, it became slow and unresponsive. John Resig published a blog post about the problem where it was explained how bad of an idea it is to directly attach expensive functions to the scroll event.

2011年,Twitter网站上弹出一个问题:当您向下滚动Twitter feed时,它变得缓慢且无响应。 John Resig发表了一篇关于该问题的博客文章,其中解释了直接将昂贵的函数附加到scroll事件的想法多么糟糕。

Debouncing is one way to solve this issue by limiting the time that needs to pass by until a function is called again. A correct implementation of debouncing would therefore group several function calls into one and execute it only once after some time has elapsed. Here’s an implementation in plain JavaScript that makes use of topics such as scope, closures, this, and timing events:

消除反跳是解决此问题的一种方法,方法是限制直到再次调用函数之前需要经过的时间。 正确实现的去抖动会因此几个函数调用成一个,并执行它只有一次经过一段时间之后。 这是纯JavaScript的实现,该实现利用了诸如scope ,closures, this和Timing事件之类的主题 :

This function — when wrapped around an event — will execute only after a certain amount of time has elapsed.

该功能(围绕事件)仅在经过一定时间后才会执行。

You would use this function like so:

您将像这样使用此功能:

Throttling is another technique that’s is similar to debouncing, except that instead of waiting for some time to pass by before calling a function, throttling just spreads the function calls across a longer time interval. So if an event occurs 10 times within 100 milliseconds, throttling could spread out each of the function calls to be executed once every 2 seconds instead of all firing within 100 milliseconds.

节流是另一种类似于反跳的技术,除了节流只是将函数调用扩展到更长的时间间隔之外,而不是在调用函数之前等待一段时间。 因此,如果一个事件在100毫秒内发生10次,则节流可能会扩展每个要每2秒执行一次的函数调用,而不是在100毫秒内触发所有事件。

For more information on debouncing and throttling, the following articles and tutorials may be helpful:

有关反跳和限制的更多信息,以下文章和教程可能会有所帮助:

  • Throttling and Debouncing in JavaScript

    JavaScript中的节流和反跳

  • The Difference Between Throttling and Debouncing

    节流与反跳的区别

  • Examples of Throttling and Debouncing

    节流和反跳的示例

  • Remy Sharp’s blog post on Throttling function calls

    雷米·夏普(Remy Sharp)关于节流功能调用的博客文章

If you enjoyed reading this article, then you may like reading the JavaScript tutorials and solving some of the JavaScript coding challenges that I host on Coderbyte. I’d love to hear what you think!

如果您喜欢阅读本文,那么您可能喜欢阅读JavaScript教程并解决我在Coderbyte上托管的一些JavaScript编码难题。 我很想听听您的想法!

翻译自: https://www.freecodecamp.org/news/3-questions-to-watch-out-for-in-a-javascript-interview-725012834ccb/

javascript面试

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/395794.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【学习笔记】深入理解js原型和闭包(11)——执行上下文栈

继续上文的内容。 执行全局代码时,会产生一个执行上下文环境,每次调用函数都又会产生执行上下文环境。当函数调用完成时,这个上下文环境以及其中的数据都会被消除,再重新回到全局上下文环境。处于活动状态的执行上下文环境只有一个…

Java基础--访问权限控制符

今天我们来探讨一下访问权限控制符。 使用场景一:攻城狮A编写了ClassA,但是他不想所有的攻城狮都可以使用该类,应该怎么办? 使用场景二:攻城狮A编写了ClassA,里面有func1方法和func2方法,但是他…

css绘制正方体_设计师仅使用CSS绘制了8个标志性X战警

css绘制正方体Here are three links worth your time:这是三个值得您花费时间的链接: A designer drew 8 iconic X-Men using nothing but CSS (1 minute interactive) 一位设计师仅用CSS绘制了8个标志性的X战警( 互动时间为1分钟 ) Raspberry Pi just turned 5. H…

Dubbo简单介绍及实例

1、概念 Dubbo是一个分布式服务框架,以及阿里巴巴内部的SOA服务化治理方案的核心框架。其功能主要包含:高性能NIO通讯及多协议集成。服务动态寻址与路由。软负载均衡与容错,依赖分析与降级等。 说通俗点,就是首先将程序组件化成一…

Oracle 10.2.0.5升级至11.2.0.4

参照MOS 官方文档Complete Checklist for Manual Upgrade to Oracle Database 11gR2 (11.2) (Doc ID 837570.1)一、升级前的准备1、复制utlu112i.sql脚本从11G数据库复制$ORACLE_HOME/rdbms/admin/utlu112i.sql 脚本至10g 数据库临时目录,准备执行如果不在10g数据库…

脱壳_详细_使用的方法_01

ZC: 如何确定被调试程序已经来到了 未加壳的程序中? ZC:  视频中是使用判断集中语言的特征 ZC:  我的方法:上面的方式 ESP平衡 1、第1课 (1)、单步跟踪(原则:向下的跳转>正常F8,向上的跳转>F4跳过(或者用F2…

android 函数式编程_Android开发人员的函数式编程-第1部分

android 函数式编程by Anup Cowkur通过安纳普考库(Anup Cowkur) Android开发人员的函数式编程-第1部分 (Functional Programming for Android Developers — Part 1) Lately, I’ve been spending a lot of time learning Elixir, an awesome functional programming language…

java编程 内存_Java编程技术之浅析JVM内存

JVMJVM->Java Virtual Machine:Java虚拟机,是一种用于计算设备的规范,它是一个虚构出来的计算机,是通过在实际的计算机上仿真模拟各种计算机功能来实现的。基本认知:1.JVM是用于运行Java代码的假象计算机,主要有一套字节码指令…

bzoj1116: [POI2008]CLO

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id1116 题目大意:Byteotia城市有n个 towns m条双向roads. 每条 road 连接 两个不同的 towns ,没有重复的road. 你要把其中一些road变成单向边使得:每个town都有且只有一个入度 题解&am…

java排序算法大全_各种排序算法的分析及java实现

排序一直以来都是让我很头疼的事,以前上《数据结构》打酱油去了,整个学期下来才勉强能写出个冒泡排序。由于要找工作了,也知道排序算法的重要性(据说是面试必问的知识点),所以又花了点时间重新研究了一下。排序大的分类可以分为两…

Cocos2d-x 3.0 简捷的物理引擎

Cocos2d-x 3.0 开发(九)使用Physicals取代Box2D和chipmunk http://www.cocos2d-x.org/docs/manual/framework/native/physics/physics-integration/zh -- 官网Demo 水墨鱼的专栏 http://www.cocos2d-x.org/docs/catalog/zh --- 官方 搭“server” 须要哪…

google i/o_Google I / O 2017最有希望的突破

google i/oby Aravind Putrevu通过Aravind Putrevu Google I / O 2017最有希望的突破 (The most promising breakthroughs from Google I/O 2017) Google I/O is one of the biggest developer conferences. This year was particularly exciting. There were two keynotes: o…

java clex 中的 IloLPMatrix

最近看 cplex 在 java 的 callback,发现它给的 callback 例子中,都是用 IloLPMatrix 这个类放约束条件,在 IloLPMatrix 中, 每个约束条件存储在 IloRange 中。 使用 IloLPMatrix 的好处是,这个类可以方便查看模型中的求…

6/12 Sprint2 看板和燃尽图

转载于:https://www.cnblogs.com/queenjuan/p/5578551.html

mailto 附带附件_我和我的朋友如何将附带项目发展为每月$ 17,000的业务

mailto 附带附件In 2014, my friends and I set out to build the best possible web design tools. We built UI kits, Admin Dashboards, Templates, and Plugins. We’ve always tried to create products that are helpful in the development process, and that we oursel…

转:PHP应用性能优化指南

程序员都喜欢最新的PHP 7,因为它使PHP成为执行最快的脚本语言之一(参考PHP 7 vs HHVM 比较)。但是保持最佳性能不仅需要快速执行代码,更需要我们知道影响性能的问题点,以及这些问题的解决方案。本文涵盖了保障PHP应用平…

java 运行异常处理_Java编程异常处理和I/O流

重点:  1.在编写程序时,要正确地使用捕获例外和声明抛出异常的两种例外处理的方法。2.遇到实际问题时,要根据需要正确使用各种输入/输出流,特别是对中文使用适当的字符输入流。3.正…

反射练习

1.反射 一种计算机处理方式。是程序可以访问、检测和修改它本身状态或行为的一种能力。 新建一个Person类: public class Person { private int age; private String name; public int getAge() { return age; } public void setAge(int age) { this.age age; } pu…

开源 物联网接入_我们刚刚推出了开源产品。 那么接下来会发生什么呢?

开源 物联网接入by Victor F. Santos由Victor F.Santos 我们刚刚推出了开源产品。 那么接下来会发生什么呢? (We just launched an open source product. So what happens next?) Last month me and the ninja god Pedro launched GitShowcase, a plug-and-play p…

Class? getClass()

getClass()方法属于Object的一部分,它将产生对象的类,并且在打印该类时,可以看到该类类型的编码字符串,前导"["表示这是一个后满紧随的类型的数组,而紧随的"I"表示基本类型int, //: initialization/OptionalTrailingArgrments.java package object;import …