JavaScript
1. Write a function which receives one argument (string) and converts the string to uppercase. function('abc') // returns 'ABC'
2. Write a function that accepts an array and a value. Find and return the first array element with bigger than given value. function([5,15,4],6) //returns 15
DO NOT USE THESE IN-BUILT FUNCTIONS BELOW
endsWith() includes() indexOf() lastIndexOf()
localeCompare() match() repeat() replace() search() slice() split()
startsWith() substr() substring() toLocaleLowerCase()
toLocaleUpperCase() toLowerCase() toString() toUpperCase() trim()
valueOf() trimLeft and trimRight unshift() valueOf() includes()
indexOf() lastIndexOf() localeCompare() match() repeat() replace()
search() slice() split() startsWith() substr() substring()
toLocaleLowerCase() toLocaleUpperCase() toLowerCase() toString()
toUpperCase() trim() valueOf() trimLeft and trimRight unshift()
valueOf()
concat() copyWithin() every() fill() filter() find() findIndex()
forEach() indexOf() isArray() join() lastIndexOf() map() pop()
push() reduce() reduceRight() reverse() shift() slice() some()
sort() splice() toString()
If you have any doubts, please give me comment...
function toUpper(str) {
var newStr = '';
for (var i = 0; i < str.length; i++) {
var charCode = str[i].charCodeAt(0);
if ((charCode >= 97 && charCode <= 122) || (charCode >= 224 && charCode <= 255)) {
newStr += String.fromCharCode(charCode - 32);
} else {
newStr += str[i];
}
}
return newStr;
}
function biggerThan(arr, val) {
for (var i = 0; i < arr.length; i++) {
if (arr[i] > val)
return arr[i];
}
}
console.log(toUpper("abc"));
console.log(biggerThan([5, 15, 4], 6));
JavaScript 1. Write a function which receives one argument (string) and converts the string to uppercase....
Code the following function in JAVASCRIPT (Use of the given
list of inbuilt functions is not allowed)
Write a function that searches the string (passed
as first argument) for the character (passed as second argument)
and changes the case for all instances of that char found in
string. The function should return the new string as shown in
example below: function(‘abRA’, ‘a’) // returns
‘AbRa’
Assignment-2(2).pdf + х A file:///C:/Users/bhati/OneDrive/Desktop/Assignment-2(2).pdf 5 of 6 O + Fit to page IL Page...
CODE THE FOLLOWING FUNCTIONS IN JAVASCRIPT (USE OF THE
ABOVE MENTIONED IN BUILT FUNCTIONS IS NOT ALLOWED)
Write a function that accepts an array as argument. The function
should loop through the array elements and accumulate the sum of
ASCII value of each character in element and return the total. For
example: function([‘A’, ‘bc’, 12]); // returns 361 which is the sum
of 65 + 98 + 99 + 49 + 50
Write a function that accepts two arguments (a...
Note: Please test your output on the console and also avoid the
functions below.
We were unable to transcribe this image6. Write a function which combines two strings which are passed as 7. The trimLeft) method removes whitespace from the left end of a 8. Write a function which removes whitespace from both ends of the parameters. Mix one character from each string and return the concatenated result. function('ABC','Defg) return ADBeCfg string. Whitespace in this context is all the whitespace...
language is java
Restrictions: You are not allowed to use anything from the String, StringBuilder, or Wrapper classes. In general, you may not use anything from any other Java classes, unless otherwise specified. You are not allowed to use String literals in your code ("this is a string literal"). You are not allowed to use String objects in your code. The methods must be implemented by manipulating the data field array, The CSString Class: NOTE: Pay very careful attention to...