Save
Busy. Please wait.
Log in with Clever
or

show password
Forgot Password?

Don't have an account?  Sign up 
Sign up using Clever
or

Username is available taken
show password


Make sure to remember your password. If you forget it there is no way for StudyStack to send you a reset link. You would need to create a new account.
Your email address is only used to allow you to reset your password. See our Privacy Policy and Terms of Service.


Already a StudyStack user? Log In

Reset Password
Enter the associated with your account, and we'll email you a link to reset your password.
focusNode
Didn't know it?
click below
 
Knew it?
click below
Don't Know
Remaining cards (0)
Know
0:00
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.

  Normal Size     Small Size show me how

JS - Week 5

WTWD 310 - JavaScript

TermDefinitionExample
Variables Containers for storing data values. In JavaScript, variables can be declared using var, let, or const. let name = "Alice"; const age = 30; var isStudent = true;
Data Types Types of values that variables can hold in JavaScript, such as strings, numbers, booleans, objects, arrays, null, and undefined. let str = "Hello"; let num = 42; let bool = true; let obj = { name: "Alice" }; let arr = [1, 2, 3]; let nothing = null; let notDefined;
Loops Control structures that repeat a block of code as long as a specified condition is true. Common loops include for, while, and do...while. for (let i = 0; i < 5; i++) { console.log(i); }
Functions Blocks of code designed to perform a particular task. Functions are executed when they are called (invoked). function greet(name) { return "Hello, " + name; } console.log(greet("Alice"));
Scope The context in which variables are accessible. Scope can be global or local to functions or blocks. let globalVar = "I'm global"; function myFunction() { let localVar = "I'm local"; console.log(globalVar); console.log(localVar); } myFunction(); console.log(localVar); // Uncaught ReferenceError: localVar is not defined
Error Handling Techniques to handle errors and exceptions in code using try, catch, and finally blocks. try { let result = riskyOperation(); } catch (error) { console.error('Error occurred:', error.message); } finally { console.log('This will run regardless of an error'); }
Debugging The process of finding and fixing errors or bugs in the code. Tools like console.log and browser developer tools are commonly used for debugging. function add(a, b) { console.log("a:", a, "b:", b); return a + b; } console.log(add(5, 3)); // Output: a: 5 b: 3 \n 8
Optimization Improving the performance and efficiency of code. This includes reducing execution time, memory usage, and improving readability. // Inefficient loop for (let i = 0; i < items.length; i++) { processItem(items[i]); } // Optimized loop items.forEach(processItem);
Created by: ProfJordan
Popular Computers sets

 

 



Voices

Use these flashcards to help memorize information. Look at the large card and try to recall what is on the other side. Then click the card to flip it. If you knew the answer, click the green Know box. Otherwise, click the red Don't know box.

When you've placed seven or more cards in the Don't know box, click "retry" to try those cards again.

If you've accidentally put the card in the wrong box, just click on the card to take it out of the box.

You can also use your keyboard to move the cards as follows:

If you are logged in to your account, this website will remember which cards you know and don't know so that they are in the same box the next time you log in.

When you need a break, try one of the other activities listed below the flashcards like Matching, Snowman, or Hungry Bug. Although it may feel like you're playing a game, your brain is still making more connections with the information to help you out.

To see how well you know the information, try the Quiz or Test activity.

Pass complete!
"Know" box contains:
Time elapsed:
Retries:
restart all cards