• Log In
  • Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Digital Systems

Department of Management Information Systems, Temple University

Digital Systems

MIS 2101.730 ■ Spring 2023 ■ Steven E. Sclarow, AIA
  • Home
  • About
    • Course Materials
    • Course Requirements
    • Email Policy
    • Grading
    • Gradebook
    • Instructor
    • Temple and COVID-19
    • Zoom Requirements
    • Zoom Links
  • Canvas Content
  • Coding Files
  • Helpdesk
  • Zoom Links
  • Video Vault
  • Diamond Peer Corner
  • Posts
    • 1a Questions
    • 1b Questions
    • 2a Questions
    • 2b Questions
    • 3a Questions
    • 3b Questions
    • 4a Questions
    • 4b Questions
    • 5a Questions
    • 5b Questions
    • 6a Questions
    • 6b Questions
    • 7a Questions

Posts

5a

Paige Willis - March 2, 2023 2 Comments

What is JavaScript? JavaScript is a type of computer programming language that is used to create interactive results within web browsers. So what is a variable in JavaScript? The definition of a variable is put simply as “a name of storage location”, and can be used to store data. You create or “declare’ a variable by using “var” or “let” and then you give it a type, a name, and a value. This basically just states what the purpose of the variable is. 

  To initialize a variable you put variableName= value;. The variableName is where you will put “var” or “let”. That will be your expression. Howecer, when writingan expression, there is a difference between “initializing” a variable and “declaring” it. When intializing a varible, you are just giving it a value. When you declare a variable, you are giving it a name and a type. It is important to note that you must initialize a variable before you initiate it, otherwise you will recieve an error message. However you do not need to initialze a variable before declaring it. 

7A Part 1 Post: (HTML and JavaScript)

Brittany Robinson - March 2, 2023 Leave a Comment

There are many different coding languages use while creating a web page. The first coding language is HTML, which stands for HyperText Markup Language. This type of coding language is used to add structure and content to a web page. It consists of a series of elements that you use to insert different parts of those contents to make it show up in a particular way. For example you can use this to pick what font you want your text to appear in the web page, or the font size. We used html quite a bit in the last few weeks of our course (mozilla.org). Another type of coding language is Javascript, which is one we’ve learned to use the last 3 weeks of the semester. Javascript is a coding language that adds functionality to a web page. It can be used to add aminations to a web page (like customizations on Myspace pages like I mentioned in another post of mine) or create new pages from scratch (analyticsinsight.net)

 

Best Programming Languages for Web Development. Analytics Insight. (2021, December 4). Retrieved March 2, 2023, from https://www.analyticsinsight.net/best-programming-languages-for-web-development/#:~:text=them%20in%20detail.-,JavaScript,buttons%20to%20creating%20complex%20animations.

HTML basics – learn web development: MDN. Learn web development | MDN. (2023, February 23). Retrieved March 2, 2023, from https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics

Weekly discussion blogs 7A (JavaScript event-driven model)

Levan Lobjanidze - March 2, 2023 1 Comment

JavaScript is called an event driven coding language since event-driven programming model. What events are mentioned in that title are events that occur with user interaction with the website. There are all kinds of different events. Every interaction the user makes with the webpage triggers a coded event. Opening the comments section, moving to the next photo, typing information and uploading it to the web page can be described as an event. Programmers use JavaScript to code a web page in a way that every interaction from user’s side will trigger an event. Ideally, triggered event must be user-friendly and transition from one event to another also must be fluent. Basically, every mouse movement, every click from the keyboard or swipe from the touchscreen must trigger specific parts of code that were designed beforehand to satisfy the user. Interaction is in real-time, thus event driven programming model is a strong model. 

Values and Variables in Javascript 5A

Rachel Holt - March 2, 2023 Leave a Comment

Javascript is a programming language. This language contains values and variables that are assigned to each piece of data. Variables contain a value.  For example, you can use the word:

let

and add the variable name “mytext” (as shown below)

let mytext

Then, you add the value. 

let mytext = “I love Javascript”

Now each time you use the variable “mytext” in your code, the code will input the original value, “I love Javascript”

This is useful because codes can be very complex, and values and variables help so that you don’t have to retype each value throughout your code.

4b Cyber security

Paige Willis - March 2, 2023 Leave a Comment

When dealing with data protection and cyber security it is crucial to follow the regulations involved with both. Luckily, there are both federal and state legislature laws put in place to safeguard your online information. Some things they protect against are cyber attacks, viruses and worms, unauthorized access, and so on, If you do not comply with these laws, it will result in significant fines and penalties. Under the Data Protection Act of 2018, “you have the right to find out what information the government and other organizations store about you” and how that information is being used.

  One type of malicious software that is detrimental to your cyber security is ransomware. This software literally restricts a user’s ability to access their computer until a ransome is paid, then they are granted access. This attempt at extortion usually comes to fruition through encrypted files. A huge target for this ransomware is hospitals. For one, hospitals rely on up-to-date medical information and depend on their systems running smoothly and effectively. An attack on a hospital not only disrupts a patient’s care, but costs the institution millions. 

 

https://www.gov.uk/data-protection#:~:text=Under%20the%20Data%20Protection%20Act,have%20incorrect%20data%20updated

Weekly discussion blogs 6B

Levan Lobjanidze - March 2, 2023 3 Comments

Loops in JavaScript are used to repeatedly input data without actually manually writing it or using a copy and paste method. In coding, we may need to use the same lines of data tenth or hundredth of times. While writing code by hand is possible and even copying it is doable, I think what this chapter in our book trains us for is the future. When we get more comfortable coding, we probably will use huge lines of same codes and loops will help us and make everything easier.  During such cases, loops are our best friends. According to our textbook, there are three types of loops in JavaScript: for loops, while loops, and do…while loops. A for loop is more common, and it runs your code until it returns false as you coded. While loop runs code until another expression returns false. As for the do…while loops, it is guaranteed to run at least once before you get false return. The difference between while loop and do…while loop is that while loop never executes if it has a false return.

6b Post (Loops in JavaScript)

Brittany Robinson - March 2, 2023 Leave a Comment

Loops are very important to use in Javascript. Loops are used to repeat a block of code. It makes it easier to loop the code instead of writing the same code over and over again. Its repeats the block of code until a condition causes it to end. Its important because performs tasks quickly. The “For” Loop is used when we want the code to run a specific number of times. The syntax for the “for” loop is  for (int i=start_value; i < finish_value; i = i + by_count ){ do something}(utah.edu). There are three parts of a for loop. They are the keyword [for] that begins the loop, the condition that is being tested, and the keyword [for] that ends the loop (freedomscience.com). When we don’t have a specific number of times for the code to run, the while loop will be used. The code will run until a condition is met.  The syntax for the while loop is while ( condition is true ) do something % Note: the “something” should eventually result % in the condition being false end. (utah.edu)

9.7 Looping. Freedom Scientific. (n.d.). Retrieved March 2, 2023, from https://support.freedomscientific.com/Content/Documents/Other/ScriptManual/09-7_Looping.htm#:~:text=Similar%20to%20a%20While%20loop,keyword%20that%20terminates%20the%20loop.

Germain, H. J. de S. (n.d.). For loop. Programming – For Loop. Retrieved March 2, 2023, from https://users.cs.utah.edu/~germain/PPS/Topics/for_loops.html

Germain, H. J. de S. (n.d.). The “while” loop. Programming – While Loop. Retrieved March 2, 2023, from https://users.cs.utah.edu/~germain/PPS/Topics/while_loops.html

 

 
 

Coding Language

Isel Sainte - March 2, 2023 Leave a Comment

Again, as previously mentioned in my Event Driven post JavaScript is like a Program and it requires step-by-step instructions to work. What I am trying to say is JacaScript provides the functionality to the web page. Part of these steps is coding language Cascading Style Sheets (CSS) and Hypertext Markup Language (HTML). HTML adds structure to the web page. CSS on the other hand adds design elements to the web page to make it look good. Those elements consist of adding color to the font, font family, and font size. Today our In Class Activity showed us how it worked, and it was pretty cool to see the coding we entered changed the look of the webpage. When we ran the code the second time and there was color, different font sizes, and family we were shocked.

The Importance of Cybersecurity 4B

Rachel Holt - March 2, 2023 4 Comments

Cybersecurity is protecting critical systems and sensitive information. It is essential because information is powerful. Losing information can jeopardize your organization. For example, if Facebook is hacked, the hacker has access to users personal information like addresses, phone numbers, passwords, chats, etc. This could cause both digital and physical danger if accessed. Ransomware is a popular type of security breach. It is when a hacker illegally accesses hardware from a corporation and holds it in exchange for a money. Hospitals are especially vulnerable to these attacks because they rely heavily on information to properly treat their patients. A simple cyber attack can be password hacking. Many people are unaware of how vulnerable their information is due to lack of security with passwords. One way you can counter these attacks is by using two-factor authentication. This is when you must unlock your account through more than one security factor (phone or email confirmation). It is important to protect your information because if not you give the power away to hackers.

Why is JavaScript Event Driven

Kristina Brown - March 2, 2023 Leave a Comment

JavaScript was created to allow people to make interactive web pages. While JavaScript is only a part of the code needed to make a wonderful web browser, JavaScript is what provides interactivity to the page. JavaScript is used to tell your browser to do something. It waits for the user of the application to do something in order to run the code. JavaScript is important because it is the base of the applications we use. It is used by Facebook, Google, Instagram, Amazon, and many other sites we use. JavaScript makes using these applications more efficient and enjoyable. Our search engines, e-commerce, and social media would not be possible without the use of JavaScript. While I will probably not use the skills I have developed in this class often in my career, understanding code and the importance of JavaScript makes using technology more interesting. Understanding the behind-the-scenes of when I search for something or add something to my cart while online is a really cool concept and I’m glad I got to learn a bit about it while taking this class.

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 3
  • Page 4
  • Page 5
  • Page 6
  • Page 7
  • Interim pages omitted …
  • Page 41
  • Go to Next Page »

Primary Sidebar

ANNOUNCEMENTS & POSTS

What is HTML and how it is used in our everyday lives! Part 2

The coding language that adds design elements to a web page is Cascading … [More...] about What is HTML and how it is used in our everyday lives! Part 2

What is HTML and how it is used in our everyday lives! Part 1

The coding language that adds structure to a web page is HTML (Hypertext … [More...] about What is HTML and how it is used in our everyday lives! Part 1

What are Loops?

Why do we use loops? Loops are used in programming to execute a set of … [More...] about What are Loops?

Importance of IF/ELSE Statements!

Why do we use if/else statements? We use if/else statements in programming … [More...] about Importance of IF/ELSE Statements!

The Functioning of JavaScript

A function in JavaScript is a block of code designed to perform a specific … [More...] about The Functioning of JavaScript

What does JavaScript mean to you? Read more to find out what it means to Shivam Joshi!

A variable in JavaScript is a container that holds a value, which can be a … [More...] about What does JavaScript mean to you? Read more to find out what it means to Shivam Joshi!

ITA CONTACT INFO

Tarisha Sarker - Diamond Peer

Email: tarisha.sarker@temple.edu
Office Hours: Monday, 3-5 PM
Zoom Link: https://temple.zoom.us/j/91454347337

Instructor

Steven E. Sclarow, AIA

Email: sclarow@temple.edu
Office Hours Availability: M | W, 9:30 - 10:30 AM, or by appointment. Please email me if you need to schedule an appointment outside of my normal office hours.
Zoom Link: https://temple.zoom.us/j/96464375557

Helpful Links

FOX Laptop Policy

Gradebook

Installing-VS-Code-Windows
Installing-VS-Code-Mac-OS

Copyright © 2025 · Department of Management Information Systems · Fox School of Business · Temple University