Question

In: Computer Science

/* Complete this javascript file according to the individual instructions given in the comments. */ //...

/* 
Complete this javascript file according to the individual instructions
given in the comments. */

// 1) Declare an array named myArray
// Assign myArray three elements: 'Tuesday',3,true
// Print myArray to the console with console.log()


// 2) Use typeof on each element in myArray
// Example: typeof myArray[0];
// Print all 3 lines to the console with console.log()



// 3) Declare a variable named myStart and set it to
// the value of the length property applied of myArray
// Print the result to the console with console.log()



// 4) Use the .splice() method on myArray
// Use your variable myStart - 2 as the first parameter of .splice()
// Use 0 as the second parameter
// In the third parameter, specify 'hamburgers' as the element to add
// Print the resulting array to the console with console.log()



// 5) Declare an array named myPal
// Give myPal these 4 elements: 'taco','cat','race','car'
// Set a string equal the first element + the second element
// Print the string to the console with console.log()



// 6) Use the .concat() method to merge myArray and myPal
// Print the result to the console with console.log()



// 7) Use the .join() method on myPal and specify no connector parameter
// Print the result to the console with console.log()


// 8) Use .sort() on myArray
// Print the resulting array to the console with console.log()


// 9) Use .slice() on myPal and specify that it begins at
// myPal.length - 2
// Print the result to the console



// 10) **Solving a problem!
// Declare a string named revOrder that is equal to 'Taco cat'
// Utilize indexOf(), split(), splice(), reverse(), and join() to
// 1) turn the string into an array
// 2) locate and remove the empty space
// 3) Reverse the order of the array
// 4) Turn the array back into a string
// 5) Log each step to the console.
// Can you combine any of the steps into one statement?
// You should finish with a result of "tacocaT"

Solutions

Expert Solution

Dear Student ,

As per the requirement submitted above , kindly find the below solution.

Here a new web page with name "jsArrayDemo.html" is created, which contains following code.

jsArrayDemo.html :

<!DOCTYPE html>

<html lang="en">

<head>

<!-- title for web page -->

<title>javascript Array</title>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

</head>

<body>

<!-- <script> is used for javascript -->

<script>

// 1) Declare an array named myArray

// Assign myArray three elements: 'Tuesday',3,true

// Print myArray to the console with console.log()

var myArray=['Tuesday',3,true];

//using for loop ,print each array element

for(var i=0;i<myArray.length;i++){

console.log("myArray["+i+"] : "+myArray[i]);

}

// 2) Use typeof on each element in myArray

// Example: typeof myArray[0];

// Print all 3 lines to the console with console.log()

for(var i=0;i<myArray.length;i++){

console.log("typeof(myArray["+i+"]) : "+typeof(myArray[i]));

}

// 3) Declare a variable named myStart and set it to

// the value of the length property applied of myArray

// Print the result to the console with console.log()

var myStart=myArray.length;

console.log("myArray length : "+myStart);

// 4) Use the .splice() method on myArray

// Use your variable myStart - 2 as the first parameter of .splice()

// Use 0 as the second parameter

// In the third parameter, specify 'hamburgers' as the element to add

// Print the resulting array to the console with console.log()

myArray.splice(myStart - 2 ,0,"hamburgers");

for(var i=0;i<myArray.length;i++){

console.log("myArray["+i+"] : "+myArray[i]);

}

// 5) Declare an array named myPal

// Give myPal these 4 elements: 'taco','cat','race','car'

// Set a string equal the first element + the second element

// Print the string to the console with console.log()

var myPal=['taco','cat','race','car'];

console.log(myPal[0]+myPal[1]);

// 6) Use the .concat() method to merge myArray and myPal

// Print the result to the console with console.log()

myArray=myArray.concat(myPal);

for(var i=0;i<myArray.length;i++){

console.log("myArray["+i+"] : "+myArray[i]);

}

// 7) Use the .join() method on myPal and specify no connector parameter

// Print the result to the console with console.log()

console.log(myPal.join());

// 8) Use .sort() on myArray

// Print the resulting array to the console with console.log()

myArray.sort();

for(var i=0;i<myArray.length;i++){

console.log("myArray["+i+"] : "+myArray[i]);

}

// 9) Use .slice() on myPal and specify that it begins at

// myPal.length - 2

// Print the result to the console

console.log(myPal.slice(myPal.length - 2));

// 10) **Solving a problem!

// Declare a string named revOrder that is equal to 'Taco cat'

// Utilize indexOf(), split(), splice(), reverse(), and join() to

// 1) turn the string into an array

// 2) locate and remove the empty space

// 3) Reverse the order of the array

// 4) Turn the array back into a string

// 5) Log each step to the console.

// Can you combine any of the steps into one statement?

// You should finish with a result of "tacocaT"

var revOrder="Taco cat";

var revOrderArray=revOrder.split(" "); //reversing array

for(var i=0;i<revOrderArray.length;i++){

console.log("revOrderArray["+i+"] : "+revOrderArray[i]);

}

var removeIndex=revOrder.indexOf(" ");

console.log(removeIndex);

//array reverse

var arrayReverse=revOrderArray.reverse();

for(var i=0;i<revOrderArray.length;i++){

console.log("revOrderArray["+i+"] : "+revOrderArray[i]);

}

//array join

var arrayJoin=arrayReverse.join(" ");

console.log("String is : "+arrayJoin);

</script>

</body>

</html>

======================================================

Output : Open web page jsArrayDemo.html in the browser and will get the screen as shown below

Screen 1 :jsArrayDemo.html

NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.


Related Solutions

/* Assignment : Complete this javascript file according to the individual instructions given in the comments....
/* Assignment : Complete this javascript file according to the individual instructions given in the comments. */ // 1) Utilize comments to prevent the following line from executing alert('Danger!'); // 2) Assign a value of 5 to a variable named x // and print the value of x to the console // 3) Assign a value of 10 to a variable named myNum // and print the value of myNum to the console // 4) Assign the product of x...
/* complete javascript file according to the individual instructions given in the comments. */ // 1)...
/* complete javascript file according to the individual instructions given in the comments. */ // 1) Prompt the user to enter their first name. // Display an alert with a personal greeting for the user // with their first name (example: Hello, Dave!) // 2) Create a Try code block that will cause a ReferenceError. // Create a Catch code block that will display the error in the // console with console.error() // 3) Prompt the user to enter a...
/* Complete this javascript file according to the individual instructions given in the comments. */ //1)...
/* Complete this javascript file according to the individual instructions given in the comments. */ //1) Create an Object using an Object Literal (the easiest way) // Name your object Breakfast // Your object should have 3 key:value pairs // The three keys should be: breakfast, lunch, dinner // Put your food choice for each as the value // 2) Display the keys of your Breakfast object in the // console. We have learned two ways to do this.. either...
/* Assignment: Complete this javascript file according to instructions given in the comments. */ // 1)...
/* Assignment: Complete this javascript file according to instructions given in the comments. */ // 1) Declare a variable named myName equal to your first name //Firstname is Susan // Construct a basic IF statement that prints the variable to the // console IF the length of myName is greater than 1 // 2) Copy your IF statement from above and paste it below // Change the IF statement to check if the length of myName // is greater than...
/* Assignment : Complete this javascript file according instructions in comments. */ // 1) Create a...
/* Assignment : Complete this javascript file according instructions in comments. */ // 1) Create a for loop that loops through its code block 10 times // In the first statement, set the variable i equal to zero // In the second statement, tell the loop to execute while i is less than ten // In the third statement, increment i by one each time the loop executes // In the code block of the loop, print the variable i...
Complete this javascript question according to the instructions given in the comments. *** DO NOT CHANGE...
Complete this javascript question according to the instructions given in the comments. *** DO NOT CHANGE any of the code that you are not instructed to. */ //////////////////// // Hint: If you see a console.log() in my examples, it is // likely a "return" goes there in your assignment. /////////////////// // 1) Define a "Vehicle" class that has a "wheels" property equal to 4 in // the constructor and a method named "rolling" that returns a string // equal to...
Complete the program used on the instructions given in the comments: C++ lang #include <string> #include...
Complete the program used on the instructions given in the comments: C++ lang #include <string> #include <vector> #include <iostream> #include <fstream> using namespace std; vector<float>GetTheVector(); void main() { vector<int> V; V = GetTheVector(); //reads some lost numbers from the file “data.txt" and places it in //the Vector V Vector<int>W = getAverageOfEveryTwo(V); int printTheNumberOfValues(W) //This should print the number of divisible values by 7 //but not divisible by 3. PrintIntoFile(W); //This prints the values of vector W into an output file...
Please complete the following code in C using the comments as instructions. Further instructions are below...
Please complete the following code in C using the comments as instructions. Further instructions are below the code. challenge.c // goal: print the environment variables to the file "env.txt", one per line // (If envp is NULL, the file should be empty, opening in write mode will do that.) // example: // inputs: // envp/environ = {"E1=2","E2=7",NULL} // outputs: // env.txt as a string would be "E1=2\nE2=7\n" // example: // inputs: // envp/environ = {NULL} or NULL // outputs: //...
I need to complete this C++ program. The instructions are in the comments inside the code...
I need to complete this C++ program. The instructions are in the comments inside the code below: ------------------------------------------------------------------------- Original string is: this is a secret! Encypted string is: uijt!jt!b!tfdsfu" Decrypted string is: this is a secret! //Encoding program //Pre-_____? //other necessary stuff here int main() { //create a string to encrypt using a char array cout<< "Original string is: "<<string<<endl; encrypt(string); cout<< "Encrypted string is: "<<string<<endl; decrypt(string); cout<<"Decrypted string is: "<<string<<endl; return 0; } void encrypt(char e[]) { //Write implementation...
Task 8.2 - Individual report. * Instructions: According to the instructions in module one, present an...
Task 8.2 - Individual report. * Instructions: According to the instructions in module one, present an individual report on the assigned topic (choose one of the 10 presented). The report will include aspects such as: definition of the topic, Historical background, advantages and disadvantages and your arguments on the contribution that you consider most significant and impactful for business administration. Present examples of corporations currently applying this method successfully. The report must be written using the essay type writing format...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT