Coggle requires JavaScript to display documents.
prototype
Object.prototype
null
const arr = [1,2,3] console.log(arr)
> (3) [1, 2, 3] 0:1 1:2 2:3 > [[Prototype]]:[]
arr.push(4)
push
Array.prototype
__proto__
[[prototype]]
String.prototype