SYNCERのロゴ
アイキャッチ画像

Promise.prototype.constructor - {___a:::8970:::Promise___}を返す

Promise.prototype.constructorはコンストラクタのPromiseを返すプロパティです。

概要

名前
constructor
所属
Promise.prototype
仕様書
https://tc39.github.io/ecma262/#sec-promise.prototype.constructor

デモ

Promise.prototype.constructorのデモです。

<!-- このコードは編集できます。 -->

<!DOCTYPE html>
<html>
<head>
	<style>
body {
	white-space: pre-wrap ;
}
	</style>
</head>
<body>
<script>
/** try it! **/
var a = Promise.prototype.constructor ;
/** try it! **/

var results = { a:a, } ;

for( var name in results ) {
	console.log( name, results[name] ) ;
	document.body.appendChild( new Text( name + " = " + results[name] + "\n" ) ) ;
}
</script>
</body>
</html>

サポート状況

ChromeFirefoxSafariEdgeIEOperaiOS SafariAndroid
32+ 29+ 7.1+× 19+ 8.3+×
  • Twitterでシェア
  • Facebookでシェア
  • Google+でシェア
  • はてなブックマークでシェア
  • pocketに保存
  • LINEでシェア
更新履歴
2017年10月1日 (日)
コンテンツを公開しました。