DEV Community

Discussion on: JS Symbol, what the heck?

Collapse
 
danielwebtd profile image
WEBTD • Edited

In the "same value in iframe" section both return false, what am I doing wrong?

// Will print false!
console.log(iframeWindow.Symbol === Symbol);

// But will print true!
console.log(iframeWindow.sharedSymbol === Symbol.for('Shared symbol'));
Collapse
 
romaintrotard profile image
Romain Trotard

Hello. Do you have some code to share ?
I have made a codesandbox where you can see the behavior: codesandbox.io/s/iframe-example-fo...

Collapse
 
danielwebtd profile image
WEBTD

Hi, it worked, thanks, I just needed to use load to wait for the iframe to load.
iframe.addEventListener('load', () => {
// do something
});