Skip to Content
JavaScript 经典实例:第三版
book

JavaScript 经典实例:第三版

by Adam D. Scott, Matthew MacDonald, Shelley Powers
September 2022
Intermediate to advanced
585 pages
8h 17m
Chinese
China Electric Power Press Ltd.
Content preview from JavaScript 经典实例:第三版
160
6
在生成器中使用无限循环没有危险,只要不断产出值即可。产出值以后,代
码便暂停运行了,不会阻碍
JavaScript
事件循环。与常规函数不同,我们并
不预期生成器函数能运行到最后的结束花括号。一旦
Generator
对象超出作
用域,对应的生成器函数及其上下文都将被当作垃圾回收。
6.8
使用部分应用技术减少冗余
6.8.1
问题
有一个接受多个参数的函数,你想对这个函数进行包装,得到一个或多个专门的版
本,需要更少的参数。
6.8.2
方案
下面的
makeString()
数接受三个参数(即元数为
3
)。
function
makeString(prefix, str, suffix) {
return
prefix + str + suffix;
}
然而,在某些情况下,第一个和最后一个参数通常是重复的。你想尽可能减少输入
重复的参数。
为了解决这个问题,你可以对现有
makeString()
函数进行包装,把一些参数锁
定下来。
function
quoteString(str) {
return
makeString('"',str,'"');
}
function
barString(str) {
return
makeString('-', str, '-');
}
function
namedEntity(str) {
return
makeString('&#', str, ';');
}
函数
161
现在,调用这些新函数只需传入一个参数。
console.log(quoteString('apple')); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

JavaScript

JavaScript

T. J. Crowder
JavaScript

JavaScript

David Flanagan
JavaScript Patterns

JavaScript Patterns

Stoyan Stefanov

Publisher Resources

ISBN: 9787519869601