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

ArrayBuffer.prototype.constructor - {___a:::8942:::ArrayBuffer___}を返す

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

概要

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

デモ

ArrayBuffer.prototype.constructorのデモです。

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

<!DOCTYPE html>
<html>
<head>
	<style>
body {
	white-space: pre-wrap ;
}
	</style>
</head>
<body>
<script>
/** try it! **/
var a = ArrayBuffer.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
7.1+ 10+ 11.6+ 8.3+ 4.0+
  • Twitterでシェア
  • Facebookでシェア
  • Google+でシェア
  • はてなブックマークでシェア
  • pocketに保存
  • LINEでシェア
更新履歴
2017年9月30日 (土)
コンテンツを公開しました。