Question #241

Author: admin
<script type="module" src="./script.js"></script>
script.js:
import './abc.js?11';
import './abc.js?11';
import './abc.js?55';
abc.js:
console.log('Hi!');
How many times will be 'Hi!' printed?
1
2
3
0, because there will be an error
Rate the difficulty of the question:
easyhard