Skip to content

Instantly share code, notes, and snippets.

@TesterDEMOR
TesterDEMOR / show.js
Last active October 27, 2025 12:05
file
/// show-text.js
'use strict';
function showText() {
alert('Привет, друг!');
}
runAt(() => { showText(); }, 'interactive');