Skip to Content
初めてのJavaScript 第3版 ―ES2015以降の最新ウェブ開発
book

初めてのJavaScript 第3版 ―ES2015以降の最新ウェブ開発

by Ethan Brown, 武舎 広幸, 武舎 るみ
January 2017
Intermediate to advanced
452 pages
5h 53m
Japanese
O'Reilly Japan, Inc.
Content preview from 初めてのJavaScript 第3版 ―ES2015以降の最新ウェブ開発

付録DES2016とES2017の動向

武舎 広幸

 

ECMAScript 2015(略してES2015あるいはES6)で非常に大きな機能追加がありましたが、今後は毎年少しずつ機能が追加され、ECMAScript 2016、ECMAScript 2017、...のようにバージョンが付けられることが決まっています。

この付録では、既に仕様が固まったECMAScript 2016と、現在議論が行われているECMAScript 2017で追加されそうなものを紹介します。

D.1 ECMAScript 2016

ECMAScript 2016(ES2016)では以下の2つの機能が追加されました。

  • 累乗を表す演算子オペレータ**
  • Array.prototype.includes

D.1.1 累乗を表す演算子「**」

まずは累乗を表す演算子「**」(アスタリスクの連続)です。ほかの多くの言語で使われていますので、多くのプログラマーにとってはおなじみでしょう。Math.pow(「16章 Math」参照)で同じことができますが、演算子として使えるようになりました。

example/chad/exad-01-1/main.js

/* 2016年12月現在、ChromeやEdgeで動作 */
const a = 3**4;
console.log(a); // 81
const b = Math.pow(3,4);
console.log(a === b); // true

2016年12月現在、ChromeやEdgeで動作するようになっています。

D.1.2 Array.prototype.includes

Array.prototype.includesは配列の中に指定の要素が含まれているかを検査してくれます。 ...

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

スタッフエンジニアの道 ―優れた技術専門職になるためのガイド

スタッフエンジニアの道 ―優れた技術専門職になるためのガイド

Tanya Reilly, 島田 浩二
データサイエンス講義

データサイエンス講義

Rachel Schutt, Cathy O'Neil, 瀬戸山 雅人, 石井 弓美子, 河内 崇, 河内 真理子, 古畠 敦, 木下 哲也, 竹田 正和, 佐藤 正士, 望月 啓充
進化的アーキテクチャ ―絶え間ない変化を支える

進化的アーキテクチャ ―絶え間ない変化を支える

Neal Ford, Rebecca Parsons, Patrick Kua, 島田 浩二

Publisher Resources

ISBN: 9784873117836Other