-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.html
More file actions
56 lines (47 loc) · 1.44 KB
/
Copy pathfirst.html
File metadata and controls
56 lines (47 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<input type="number" id="box">
<button onclick="typ()">Click</button>
<script>
let x= "Hello"
let y = "World"
let z = " "
let k = "Life is Amazing "
// console.log(x.str);
// Cancatenation
console.log(x.concat(z.concat(y)));
// To uppercase
console.log(y.toLocaleUpperCase());
// Substring
console.log(x.substring(1,6));
// Replace
console.log(k.replace(' ', '-'));
let date = '12/03/2004'
let change = date.split('/')
let age = 2023 - change[2]
console.log(change[2]);
console.log(age);
// console.log('if you were born in ${change[2]} then your age is ${age}');
// Repeat
console.log(k.repeat(4));
// Start & End With
console.log(k.startsWith('Life'));
console.log(k.endsWith('life'));
console.log(x.includes('el'));
function typ() {
console.log(box.value-=3)
// To change text to integer
// alert(parseInt(box.value))
}
let a =2
</script>
<!-- <script>setTimeout(function(){window.location='transactions'}, 1000)</script>"; -->
</body>
</html>