Created
July 5, 2022 08:37
-
-
Save crischutu07/fa6e72e72455032e886bf1d45750063f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function MyInfo() { | |
const RealName = ("Nguyen Hong Son"); | |
const Age = Math.random(10 - 20); // My Age range like that =) | |
const Name = ("crischutu07","SondolaVNXbox"); // everyone call me crischutu or Sondola like that =)) | |
const CurrentProgramLanguage = ("JavaScript","PHP"); // 2 Month of no coding I need to learning that again | |
console.log("${RealName}\n${Age} Random Age =))\n${Name}\n${CurrentProgramLanguage}\n) | |
}; | |
MyInfo(); | |
process.exit(1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment