Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
let greetings = "Welcome to my house";
let name = "Anaihita";
let title = "Anaihita";
let worldName = "Anaihita";

let age = 11;
let year = 2022;
let century = 2100;

let songUsed = ['Harry Styles', 'Olivia Rodrigo', 'Billie Eilish'];

let hasFavSong = true;


console.log(greetings + " my Name is " + name + ".");
console.log("I'm the " + title);
console.log("As the member of " + worldName + ", I like to play the guitar.");
console.log("It is an instrument");
console.log("For example, I started playing when I was " + age + " years old.");
console.log("In my world, you are in year" + year + ", the " + century + "th century." + "\n");
console.log("Does anyone have any questions?");
console.log("Me: Do you have a favourite singer?");
console.log("Human: " + hasFavSong + ", my favourite singer is " + songUsed[0] + "." + "\n");
console.log("You are free to do anything you want!");
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.