Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
SamyBeshoy authored Apr 25, 2024
1 parent 49448bb commit 87b5d02
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Problem19_ConvertStringToNum/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Beshoy Samy Englizy">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Custom Meta Tag For Date -->
<meta name="date" content="2024-04-24"> <!-- Year - Month - Day -->
<title>Document</title>
</head>
<body>
<script>
// Way Number 1
function convertStringToNum(str) {
console.log(Number(str));
}
convertStringToNum("123");

// Way Number 2
function convertStringToNum2(str) {
console.log(+str);
}
convertStringToNum2("123");
</script>
</body>
</html>

0 comments on commit 87b5d02

Please sign in to comment.