Ask user for their star sign and display a personalized message.
by Imri Paloja
HTML
<button id="signButton" onclick="custom_prompt()">Check star sign</button>
<pre id="log"></pre>
JavaScript
function custom_prompt() {
const input = prompt(
'Enter your name, age, and favorite color, separated by commas:',
);
const [name, age, color] = input.split(',').map((item) => item.trim());
console.log(name, age, color);
}