TeachUcomp, Inc.

P: 877-925-8080

  • HOME
  • COURSES
    • Course List
    • For Lawyers
    • My Courses
    • Online Learning
      • Member Login
      • Online Learning FAQ
      • Subscribe
    • Training Options
  • FOR BUSINESS
    • Business Licensing
    • Request a Quote
  • MANUALS
  • REFERENCE CARDS
    • Adobe
      • Acrobat DC
      • Lightroom Classic CC 2018
      • Photoshop 2020
      • Photoshop CC 2018
      • Photoshop Elements 2021
      • Photoshop Elements 2020
      • Photoshop Elements 2019
      • Photoshop Elements 2018
      • Photoshop Elements 15
    • Google
      • Google Classroom for Teachers
    • Microsoft Office
      • Microsoft Office 365
        • Excel for Office 365
        • Microsoft Office 365
        • OneNote for Windows 10
        • Outlook for Office 365
        • PowerPoint for Office 365
        • Word for Office 365
      • Microsoft Office 2019
        • Access 2019
        • Excel 2019
        • Microsoft Office 2019
        • Outlook 2019
        • PowerPoint 2019
        • Publisher 2019
        • Word 2019
      • Microsoft Office 2016
        • Access 2016
        • Excel 2016
        • Microsoft Office 2016
        • OneNote 2016
        • Outlook 2016
        • PowerPoint 2016
        • Publisher 2016
        • Word 2016
      • Microsoft Office 2013
        • Excel 2013
        • Microsoft Office 2013
        • OneNote 2013
        • Outlook 2013
        • PowerPoint 2013
        • Word 2013
      • Microsoft Office for iPad
        • Microsoft Office for iPad
    • Microsoft Teams
      • Microsoft Teams
    • QuickBooks Pro
      • QuickBooks Pro 2021
      • QuickBooks Pro 2020
      • QuickBooks Pro 2019
      • QuickBooks Pro 2018
      • QuickBooks Pro 2017
      • QuickBooks Pro 2016
      • QuickBooks Pro 2015
      • QuickBooks Pro 2014
    • Sage
      • Sage 50 2019
      • Sage 50 2018
    • Windows
      • Windows 10
  • SUPPORT
    • Company
      • About Us
      • Blog
      • Contact Us
      • Our History
      • Our Philosophy
        • Customer Service
        • Mission
      • Policies
      • Testimonials
    • Contact Us
    • FAQ
    • Help
    • Lost Password
    • Register a Product
  • MEMBER LOGIN
    • Manage My Account
    • Member Login
    • My Courses
  • MY CART
Shop Now

Email Validation Using JavaScript – Tutorial

Friday, July 01 2016 by Joseph Brownell
Email Validation Using JavaScript - Tutorial: A picture of the introductory text from the
Email Validation Using JavaScript: Overview             You can perform email validation using JavaScript to validate an email address in a form field. The check is done to ensure the proper syntax and structure of an email address has been entered by the user. The code tests for the “at” symbol (@) and ensures that there
courseemailemail validationEmail Validation Using JavaScriptformhelphow-toJavaScriptjavascript trainingJavaScript tutoriallearnlessonoverviewteachtrainingtutorialvalidatevalidationvideo
Read more
  • Published in JavaScript, Latest
No Comments

Comments in JavaScript – Tutorial

Wednesday, March 30 2016 by Joseph Brownell
Comments in JavaScript - Tutorial: A picture describing the use of single-line comments in JavaScript.
Comments in JavaScript: Overview             Comments in JavaScript are primarily used to explain what the code is for or to make it more readable. Single line comments start with a double forward slash (//), but do not have an end tag. Any text that is written after (//) will be completely ignored by JavaScript and
addcommentcommentsComments in JavaScriptcoursecreatehelphow-toinsertinstructionsJavaScriptlearnlessonmulti-line commentsoverviewsingle-line commentsteachtrainingtutorialvideo
Read more
  • Published in JavaScript, Latest
No Comments

Introduction to JavaScript- Tutorial

Tuesday, November 17 2015 by Joseph Brownell
Introduction to JavaScript- Tutorial: A picture of the main discussion points from our introduction to JavaScript lesson.
Introduction to JavaScript: Overview             JavaScript is considered a dynamic programming language. It was first released with Netscape Navigator in 1995. Originally called LiveScript, the name was changed when Netscape Navigator added support for the machine language Java.             It quickly gained success and Microsoft introduced JavaScript in the release of Internet Explorer Version 3.0
classcoursecss3helphow-tohtml5informationinstructionintroductionIntroduction to JavaScriptintroductoryJavaScriptjavascript trainingJavaScript tutoriallearnlessonoverviewteachtrainingtutorialvideo
Read more
  • Published in HTML, JavaScript, Latest
No Comments

RegExp Definition and Modifiers- Tutorial

Thursday, September 10 2015 by Joseph Brownell
RegExp Definition and Modifiers- Tutorial: A picture of an example of a case-insensitive global search and an example of a multiline search using RegExp in JavaScript.
RegExp Definition and Modifiers: Overview             This lesson provides information about the RegExp definition and modifiers in JavaScript. RegExp stands for regular expression. In JavaScript, it is an object that describes a pattern of characters. When searching in text, you can use a regular expression to describe what you are looking for, be it a
coursedefinitionexampleexampleshelphow-toinstructionsJavaScriptlearnlessonmodifiersoverviewRegExpRegExp Definition and Modifierssyntaxteachtrainingtutorialvideo
Read more
  • Published in JavaScript, Latest
No Comments

Declaration Hoisting in JavaScript- Tutorial

Monday, July 13 2015 by Joseph Brownell
Declaration Hoisting in JavaScript- Tutorial: A picture summarizing the main points of the lesson on declaration hoisting in JavaScript.
Declaration Hoisting in JavaScript: Overview             JavaScript always moves declarations to the top of the current script or function. These are also called the “scope.” The term for this default behavior is “hoisting.” When using JavaScript declarations, it is important to note that a variable can be used before it has been declared. This happens
Declaration Hoisting in JavaScriptdeclarationshelphoistinghow-toJavaScriptlearnlessonoverviewsyntaxteachtrainingtutorialvideo
Read more
  • Published in JavaScript, Latest
No Comments

JavaScript RegExp Syntax- Tutorial

Thursday, May 28 2015 by Joseph Brownell
JavaScript RegExp Syntax- Tutorial: A picture showing the uses of the two different RegExp syntaxes in JavaScript.
JavaScript RegExp Syntax: Overview             RegExp stands for regular expression. In JavaScript, it is an object that describes a pattern of characters. When searching in text you can use a regular expression to describe what you are looking for, be it a single character or a whole word. To search using RegExp you need to
codecoursedefinitionexpressionsflagshelphow-tointroductoryJavaScriptJavaScript RegExp SyntaxlearnmodifiersoverviewRegExpsyntaxteachtrainingtutorialvideo lesson
Read more
  • Published in JavaScript, Latest
No Comments

The FOR Loop in JavaScript- Tutorial

Thursday, March 05 2015 by Joseph Brownell
The FOR Loop in JavaScript- Tutorial: A picture from
The FOR Loop in JavaScript: Overview             Loops are useful in JavaScript when you want to execute the same code over and over with a different value each time. The for loop in JavaScript is used to create a loop in JavaScript. The for Loop in JavaScript loops through a block of code a number
codecourseExcel Training Tutorial Free OnlineFOR loophelphow-toinstructionsJavaScriptlearnlessonoverviewstatementteachThe FOR Loop in JavaScripttrainingvideo
Read more
  • Published in JavaScript, Latest
No Comments

JavaScript Variables- Tutorial

Friday, February 13 2015 by Joseph Brownell
JavaScript Variables- Tutorial: A picture from the lesson
JavaScript Variables: Overview             Much like algebra, JavaScript uses letters as containers for storing information, for example: var x=7;. In the previous example, the letter “x” is assigned a numerical value of 7, declaring that any variables with the letter “x” will have a value of 7.             JavaScript variables can hold expressions as well
coursedeclaring variableshelphow-toJavaScriptJavaScript Variableslearnlessonnumbersoverviewsyntaxteachtexttrainingtutorialvariablesvideo
Read more
  • Published in JavaScript, Latest
No Comments
  • 1
  • 2

Recent Posts

  • Respond to Meeting Requests in Outlook- Instructions: A picture of a user accepting a meeting request and choosing how to send the response within Outlook.

    Respond to Meeting Requests in Outlook- Instructions

    Respond to Meeting Requests in Outlook: Overvie...
  • Reply to an Email in Outlook - Instructions: A picture of a user replying to an email in Outlook.

    Reply to an Email in Outlook – Instructions

    Reply to an Email in Outlook: Overview         ...
  • Use Search Folders in Outlook: A picture of a user creating a new search folder in the “New Search Folder” dialog box.

    Use Search Folders in Outlook- Instructions and Video Lesson

    Use Search Folders in Outlook: Overview  &...

Categories

Archives

  • GET SOCIAL

© 2001-2021 Copyright TeachUcomp, Inc. All rights reserved.

TOP
Want an EXTRA Discount? 0 Days 0 Hours 25 Minutes 56 Seconds      Today ONLY!
Ask For Coupon