Instruction: Please write this code in javascript and let me know if there is an issue. Can you post the output together please? 1. You are to create ONE JavaScript file which must be named -problems.js, where STUDENT_ID represents your student number. 2. The implementation for your 5 JavaScript functions must be completed within your - problems.js file. 3. Your JavaScript functions file must be configured for strict mode (“use strict”) The pages that follow provide the description of the 5 JavaScript functions that you must implement Questions 1. Description a). You are to develop a JavaScript file (problems.js) that contains the implementation of 5 functions. Each function is represented as one step, b). Each function is independent and solves a unique problem, as such, treat and implement each function in isolation of the others, that is, you should only focus on one problem at a time. 2). Objective • Write decision-making statements and control structures to solve problems • Apply programming logic to solve basic to intermediate problems • Testing and debugging 3. Variables/function name can be short, yet descriptive/meaningful, camel casing applied • Use let/const over keyword var when possible • Avoid globals • Stick to a strict coding style • Comment as much as needed but not more • Clean and easy to read code (indentation, space before and after any operator) Please ensure to remove all instances of the following from your final submission solution: • document.write() • innerHTML() • alert() • any commented code • Do not overuse the console log, spamming the console log unnecessarily, say for example. with debug-related output may cost you marks.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Instruction:

Please write this code in javascript and let me know if there is an issue. Can you post the output together please?

1. You are to create ONE JavaScript file which must be named -problems.js, where STUDENT_ID represents your student number.

2. The implementation for your 5 JavaScript functions must be completed within your - problems.js file.

3. Your JavaScript functions file must be configured for strict mode (“use strict”)

The pages that follow provide the description of the 5 JavaScript functions that you must implement

Questions

1. Description

a). You are to develop a JavaScript file (problems.js) that contains the implementation of 5
functions. Each function is represented as one step,
b). Each function is independent and solves a unique problem, as such, treat and implement each function in isolation of the others, that is, you should only focus on one problem at a time.

2). Objective

• Write decision-making statements and control structures to solve problems
• Apply programming logic to solve basic to intermediate problems
• Testing and debugging

3. Variables/function name can be short, yet descriptive/meaningful, camel casing applied

• Use let/const over keyword var when possible

• Avoid globals

• Stick to a strict coding style

• Comment as much as needed but not more

• Clean and easy to read code (indentation, space before and after any operator)

Please ensure to remove all instances of the following from your final submission solution:

• document.write()

• innerHTML()

• alert()

• any commented code

• Do not overuse the console log, spamming the console log unnecessarily, say for example. with debug-related output may cost you marks.

Function 5: Count Occurrences
function _ five(text, pattern)
Create a JavaScript function that meets the following requirements:
Accepts two string parameters, a principal string and pattern string.
The function determines if the pattern string exists within the principal string.
The function displays the result (console log) as illustrated below.
The function returns a Boolean back to the caller, indicating if the pattern was found.
Calling _five(George Brown, or)
The pattern exists in the text string
Calling _five(George Brown, OR)
The pattern does not exist in the text string
Calling _five(George Brown, Nancy)
The pattern does not exist in the text string
Transcribed Image Text:Function 5: Count Occurrences function _ five(text, pattern) Create a JavaScript function that meets the following requirements: Accepts two string parameters, a principal string and pattern string. The function determines if the pattern string exists within the principal string. The function displays the result (console log) as illustrated below. The function returns a Boolean back to the caller, indicating if the pattern was found. Calling _five(George Brown, or) The pattern exists in the text string Calling _five(George Brown, OR) The pattern does not exist in the text string Calling _five(George Brown, Nancy) The pattern does not exist in the text string
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education