Skip to content

Instantly share code, notes, and snippets.

View MostafaSaadatnia's full-sized avatar
🛰️
Exploring

Mostafa Saadatnia MostafaSaadatnia

🛰️
Exploring
View GitHub Profile
@MostafaSaadatnia
MostafaSaadatnia / chickenVsEgg.js
Created March 28, 2022 11:35 — forked from jiristepan/chickenVsEgg.js
Chicken egg problem solved by javascript
let question = ['🥚','🐔']
let answer = question.sort()
console.log(answer[0] + ' was first!')
@jiristepan
jiristepan / chickenVsEgg.js
Created October 19, 2018 09:26
Chicken egg problem solved by javascript
let question = ['🥚','🐔']
let answer = question.sort()
console.log(answer[0] + ' was first!')