FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Conversions/UpperCaseConversion.js at master · MMABSOUT/JavaScript · GitHub
MMABSOUT
/
JavaScript
Public
forked from
TheAlgorithms/JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
Conversions
/
UpperCaseConversion.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (33 loc) · 1.6 KB
Breadcrumbs
JavaScript
/
Conversions
/
UpperCaseConversion.js
Copy path
File metadata and controls
35 lines (33 loc) · 1.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
Explanation :- A user gives a string (it can be incomplete lowercase or
partially in lowercase) and then the program converts it into a
completely (all characters in uppercase) uppercase string. The
logic we have used in the following program is: All the lowercase
characters (a-z) has [ASCII](https://en.wikipedia.org/wiki/ASCII) value ranging from 97 to 122 and their
corresponding uppercase characters (A-Z) have ASCII values 32
lesser than them. For example ‘a‘ has an ASCII value of 97
and ‘A‘ has an ASCII value of 65 (97 - 32). The same applies to other
characters.
*/
/**
* upperCaseConversion takes any case-style string and converts it to the uppercase-style string.
*
@param
{
string
} inputString Any case style string
*
@returns
{
string
} Uppercase string
*/
const
upperCaseConversion
=
(
inputString
)
=>
{
// Take a string and split it into characters.
const
newString
=
inputString
.
split
(
''
)
.
map
(
(
char
)
=>
{
// Get a character code by the use charCodeAt method.
const
presentCharCode
=
char
.
charCodeAt
(
)
// If the character code lies between 97 to 122, it means they are in the lowercase so convert it.
if
(
presentCharCode
>=
97
&&
presentCharCode
<=
122
)
{
// Convert the case by use of the above explanation.
return
String
.
fromCharCode
(
presentCharCode
-
32
)
}
// Else return the characters without any modification.
return
char
}
)
// After modification, with the help of the join method, join all the characters and return them.
return
newString
.
join
(
''
)
}
export
{
upperCaseConversion
}
Back
|
FazBrowse Home
|
New Git URL