₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,993 members, 8,424,479 topics. Date: Thursday, 11 June 2026 at 09:09 AM

Toggle theme

TechExpress's Posts

Nairaland ForumTechExpress's ProfileTechExpress's Posts

1 (of 1 pages)

ProgrammingRe: Teach Yourself Javascript For Absolute Beginners by TechExpress(op): 4:46pm On Jan 24, 2021
Section 1: Setting Up Your Environment

Before you can even begin to write any JavaScript, you are going to need a couple of things – a text editor and a decent web browser that contains tools for web development. For this, we are going to use the Chrome browser and look at a text editor called Brackets.
Chrome:
One of the most important things about learning JavaScript is learning the console and that includes how to set it up. Chrome has its own built-in console and this is perfect for inputting your scripts and code – even better, it’s free. This is how you get it:
1. Open the web browser you are using and type in
www.google.com/Chrome
2. Download the Chrome browser. From here, it is your choice as to whether you keep Chrome as your primary browser or you just use it for doing your JavaScript. Follow all the on-screen instructions to download and install Chrome browser
3. Open the Chrome browser and look for an Options circle in the top right corner – click it and you will see some more options
4. Select More Tools and then Developer Tools
5. Now select Console and the console pad will load. You should see the symbol > on it – this is your command prompt and it is where all your code will be input.
Now you can begin to use the console in Chrome so take the time out to explore it; learn what it is all about and how to use it.
Shortcut:
There is a shortcut to open your console:
● Download and install Chrome
● In the address bar, type about: blank and a blank page will load.
Getting Started:
Now that you have set up your console, you can type console.log() at your command prompt – this will log you in. Now is the time to begin exploring and learn what JavaScript is all about – as I mentioned earlier, you will find lots of practical examples to help you out through the book so use them and learn. A couple of helpful hints – you can click the button that says Preserve Log to preserve anything that you input and if you want to save your work, right-click anywhere in the console and choose Save As.
Now let’s look at text editors. You can choose any that you want but I would recommend Brackets
Brackets:
Brackets is open source and is specifically designed for web development. It is built using JavaScript making it the very best editor, providing plenty of useful tools and help for you to learn how to code much easier and much more effectively.
1. Open your web browser and type in http://brackets.io/
2. Download the version that corresponds to your operating system – Linux, Windows or Mac
When you open Brackets for the first time, you will be presented with a project named “Getting Started.” Onscreen instructions will show you how to use the features in Brackets
● Opening a folder is simple – click File>Open Folder. You will see this in the file tree that is to the left of your screen. This is your projects folder and it has some settings related to it. To move between projects, simply click on the root folder name in the tree or you can drag the relevant folder form your operating system into Brackets and it will open.
● Instead of showing your opened files in tabs, Brackets shows them in a list titles “Working Files” and you will find this above the tree. Clicking on a file in that tree will allow you to view the file but it won’t get put into the Working Files List. This way, you can look through the files without having to open each one. Any changes that are made to a file will be put automatically into the Working Files list and to add a file to the list without having to edit it first, you simply double-click the name.
To begin with, a single editor will be on show in Brackets view but you can split it so you see two editors. These can be horizontal or vertical and to choose, click View and then on Horizontal Split or Vertical Split. The main view will now show as two and you can view two files at the same time. You will also get another Working Files list so you can see what is open in each pane. You can also drag files between the two panes.
Brackets is very clever in that, whatever view layout you had for each project, it will remember it. Opening a project will show you which layout was there when you saved and closed the project. To close split view and go back to a single pane, just click on View and then on No Split. You won’t shut down any open files by doing this; the separate lists of Working Files will now be merged into one and all changes will be stored until you chose to discard or to save them.
Have a play, learn your way around Brackets and then open a new console, ready to start coding.

Download the JavaScript eBook here >>> https://www.npowerinfo.com/product/full-stack-javascript-developer/
TechExpress:
JavaScript Programming for Absolute beginners

Table of Contents
Introduction
Section 1: Setting Up Your Environment

Section 2: The Browser
Your First JavaScript
JavaScript Tag Placement
External JavaScript Files
The Browser Object Model

Section 3: Window Methods
Window Methods and Events
Window Events
Document Object Model – DOM

Section 4: Programming Basics
Variables
Operator Precedence
Conditional Logic
IF ... ELSE
IF … ELSE IF
Nested If Statements
Comparison Operators
Logical Operators
The NOT Operator
Switch Statements
while loops

Section 5: Arrays and Functions
Arrays
Arrays and Loops
Functions
Functions That Call Other Functions
Return Values
Function Arguments
Variable Scope

Section 6: String Manipulation
Strings - Changing Case
Strings - indexOf
Strings - charAt
Strings – substr
Strings - Split and Join

Section 7: How JavaScript Works with HTML and CSS
Conclusion
JavaScript Mock Test Answers



Introduction
First, let me congratulate you for taking the time to read my guide to JavaScript. My intention is to guide you through the inner workings of JavaScript. I want you to learn exactly what JavaScript is, how it all works and how all the pieces fit together as well as going into some detail about some of the HTML elements that go together with JavaScript.
JavaScript is an incredibly light language and is easy to learn as well as being dynamic. Brendan Eich designed it in 1995 when he worked for Netscape, the owner of the very first web browser. JavaScript is a web-based programming language that is used for the creation of websites and web pages using other components like Java applets, images and plugins.
JavaScript is an open source language and cross-platform and you will find that all the major websites use it as their core programming language.
To help you through, I have included lots of examples for you try yourself – this is the best way to learn something and I hope that it helps you too. There are also several exercises dotted throughout the book, just examples that you can have a go at. These are designed to compound what you have learned in a specific section and I haven't provided any answers for these. They are merely a way for you to practice and I would urge that you go over them over and again until you are confident. These are not just designed to test your knowledge of the subject but also to test whether you have learned the correct way to write the code. And, at the very end of the book, you will find a mock JavaScript test for you to try, complete with answers.
If you are ready to start learning JavaScript, let’s go.
ProgrammingTeach Yourself Javascript For Absolute Beginners by TechExpress(op): 4:52pm On Jan 09, 2021
JavaScript Programming for Absolute beginners

Table of Contents
Introduction
Section 1: Setting Up Your Environment

Section 2: The Browser
Your First JavaScript
JavaScript Tag Placement
External JavaScript Files
The Browser Object Model

Section 3: Window Methods
Window Methods and Events
Window Events
Document Object Model – DOM

Section 4: Programming Basics
Variables
Operator Precedence
Conditional Logic
IF ... ELSE
IF … ELSE IF
Nested If Statements
Comparison Operators
Logical Operators
The NOT Operator
Switch Statements
while loops

Section 5: Arrays and Functions
Arrays
Arrays and Loops
Functions
Functions That Call Other Functions
Return Values
Function Arguments
Variable Scope

Section 6: String Manipulation
Strings - Changing Case
Strings - indexOf
Strings - charAt
Strings – substr
Strings - Split and Join

Section 7: How JavaScript Works with HTML and CSS
Conclusion
JavaScript Mock Test Answers



Introduction
First, let me congratulate you for taking the time to read my guide to JavaScript. My intention is to guide you through the inner workings of JavaScript. I want you to learn exactly what JavaScript is, how it all works and how all the pieces fit together as well as going into some detail about some of the HTML elements that go together with JavaScript.
JavaScript is an incredibly light language and is easy to learn as well as being dynamic. Brendan Eich designed it in 1995 when he worked for Netscape, the owner of the very first web browser. JavaScript is a web-based programming language that is used for the creation of websites and web pages using other components like Java applets, images and plugins.
JavaScript is an open source language and cross-platform and you will find that all the major websites use it as their core programming language.
To help you through, I have included lots of examples for you try yourself – this is the best way to learn something and I hope that it helps you too. There are also several exercises dotted throughout the book, just examples that you can have a go at. These are designed to compound what you have learned in a specific section and I haven't provided any answers for these. They are merely a way for you to practice and I would urge that you go over them over and again until you are confident. These are not just designed to test your knowledge of the subject but also to test whether you have learned the correct way to write the code. And, at the very end of the book, you will find a mock JavaScript test for you to try, complete with answers.
If you are ready to start learning JavaScript, let’s go.
ProgrammingHow To Make Money Online During Covid-19 Lockdown by TechExpress(op): 2:05pm On Dec 28, 2020
Unemployment as been on the rise since the advent of Covid-19 and a lot of Countries including Nigeria as entered into recession. However, there is a huge Job opportunity I will be sharing with you and the beautiful part of these jobs is that you can learn and start earning your dollars without leaving the comfort of your home. Here are the Jobs Opportunities:

1) Digital Marketing Specialist: 10.8 Million Jobs on LinkedIn.com

Start learning Digital Marketing here : https://www.npowerinfo.com/product/understanding-digital-marketing/


2) JavaScript Developer: 20 Million Jobs on LinkedIn.com

Start learning JavaScript Development here : https://www.npowerinfo.com/product/javascript-programming-for-absolute-beginners/



3) PHP Developer: 4 Million Jobs on LinkedIn.com

Start learning PHP Development here : https://www.npowerinfo.com/product/learn-php-in-24-hours-or-less/



4) WordPress Developer: 1.3 Million Jobs on LinkedIn.com,

Start learning WordPress Development here : https://www.npowerinfo.com/product/wordpress-for-web-developers/



5) Java Developer: 5 Million Jobs on LinkedIn.com

Start learning Java Development here : https://www.npowerinfo.com/product/java-for-absolute-beginners/



6) Fullstack Developer: 7.1 Million Jobs on LinkedIn.com

Start learning Fullstack Development here : https://www.npowerinfo.com/product/full-stack-javascript-developer/



7) Shopify Developer: 3.1 Million Jobs on LinkedIn.com

Start learning Shopify Development here : https://www.npowerinfo.com/product/shopify-application-development/



cool Data Analyst: 1.4 Million Jobs on LinkedIn.com

Start learning Data Analysis here : https://www.npowerinfo.com/product/data-analysis-from-scratch-with-python/



9) Social Media Manager: 7 Million Jobs on LinkedIn.com

Start learning Social Media Management here : https://www.npowerinfo.com/product/social-media-the-art-of-marketing-on-youtube-facebook-twitter-and-instagram-for-success/



10) Python Developer: 2.1 Million Jobs on LinkedIn.com

Start learning Python Development here : https://www.npowerinfo.com/product/learn-python-in-one-day-and-learn-it-well-python-for-beginners-with-hands-on-project-the-only-book-you-need-to-start-coding-in-python-immediately/



To learn more Digital Skills check here: https://www.npowerinfo.com/shop/

For more info on Jobs, Business and Scholarship opportunities visit here: www.npowerinfo.com
Like, Comment and Share

1 (of 1 pages)