Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions scripts/bislon_script.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
const func = () => {
const [name, ID, email, language] = ['Bislon Zulu', 'HNG-03958', '[email protected]', 'JavaScript'];
return `Hello World, this is ${name} with HNGi7 ID ${ID} and email ${email} using ${language} for stage 2 task`;
const email = "[email protected]";
const name = "Bislon Zulu";
const id = "HNG-03958";
const language = "javaScript";
return `Hello World, this is ${name} with HNGi7 ID ${id} using ${language} for stage 2 task email ${email}`;
}

console.log(func());