JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="iframe" src="about:blank" name="w iframe">
 </iframe>

JavaScript

function z(window) {
  window = window || self
  alert(window.name)
}

window.name = 'w top'
z()

var iframe = document.getElementById('iframe')
iframe.contentWindow.name = 'w iframe'

z(iframe.contentWindow)