-
Notifications
You must be signed in to change notification settings - Fork 0
/
functiontutorial.js
88 lines (62 loc) · 1.6 KB
/
functiontutorial.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// function addNum(a,b)
// {
// return a+b
// }
// function divideNum(a,b){
// return a/b
// }
// function subtractNum(a,b){
// return a-b
// }
// function multiplyNum(a,b){
// return a*b
// }
// console.log(addNum(7,8))
// const addNum =(a,b) => a+b ;
// const subtractNum =(a,b) => a-b;
// const multiplyNum =(a,b) => a*b;
// const sqrNum =(a) => a*a ;
// const numMod=(a) => a%2;
// console.log(addNum(2,5))
// console.log(subtractNum(5,2))
// console.log(sqrNum(5))
// console.log(numMod(2))
//loops
// for (let i=2; i<20; i+=2)
// console.log(i)
// for (let i=2; i<20; i+=3)
// console.log(i)
// let someword='AdamSalisu'
// console.log(someword.split())
// let somearray=['a','b','c','d']
// console.log(somearray.reverse())
// function stringToArray(s)
// {
// return s.split("").reverse().join(""))
// }
// console.log(stringToArray("Salisu"))
// function isPalindrome(str)
// {
// let newStr=str.split("").reverse().join("")
// if(str===newStr){
// return true
// } else{
// return false
// }
// }
// console.log(isPalindrome("fire"))
// let str15="15"
// console.log(parseInt(str15))
//interger as an input and check wether is a Palindrome
function intPalindrome(num)
{
let numToStr=num.toString()
let newStr=numToStr.split('').reverse().join('')
let backToInt=parseInt(newStr)
if (backToInt===backToInt)
{ return true
}else{
return false
}
}
console.log(intPalindrome(3003))