This repo is part of the inspirezone.tech community portfolio of projects located on our GitHub page
Inspirezone is an online tech blog and community that focuses on encouraging developers of all levels of experience to improve their skills through online collaboration.
Consider joining the inspirezone community here! You don't have to join to contribute to this project. However, joining will give you a number of advantages such as:
- Access to member exclusive channels on the inspirezone Discord server
- Join in discussions with other members and take part in events
- Be part of an accountability group that will encourage you to code more
- Get notified of other projects and activities within our community
- It's fun to improve your skills by working with others!
Please make sure you are assigned to an ISSUE before submitting a pull request
Go to the issues page and either:
- Request to be assigned to an existing issue
- Create your own issue and use one of the templates provided. Wait for approval and to be assigned the issue before submitting a pull request
Note: You can only be assigned to one issue at a time. Please clear your assigned issue before requesting to be assigned to another.
- Add a tutorial
- Improve an existing tutorial
- Report a bug or problem with the repo or a tutorial
- Suggest a tutorial
- Help with documentation
- Make any suggestion for improvement
- Tutorial should explain a concept as simply as possible
- Each tutorial should be a ".js" file and should be executable
- Each tutorial should come with a challenge that can be verified through a print of the expected result/results to console
- All folders and files should be named using lower cases with words separated by '-' e.g. for-loops.js
- Please use the following template for each tutorial:
/*
-------------------------------------------------------------------------------------
Tutorial: brief description of tutorial content
-------------------------------------------------------------------------------------
*/
/* Code here explaining concept with comments to guide */
/*
-------------------------------------------------------------------------------------
Challenge: list challenges to be completed here. minimum of one challenge per tutorial
-------------------------------------------------------------------------------------
*/
To test your JavaScript file before submitting use the online jshint tool.
Or install jshint:
npm install jshint
Then run a jshint check against the file:
jshint filename.js
Please use pull requests to submit your contribution.
If you're new to opensource and contributing, for a bit of help getting started see this post on the inspirezone blog:
A beginner friendly guide to making your first open source contribution.
1. Fork this repo. Click on the fork icon on this repo to create a copy of it on your GitHub profile
git clone https://github.com/your-github-username/TeachMeJavaScriptLikeIm5.git
git remote add upstream https://github.com/inspirezonetech/TeachMeJavaScriptLikeIm5.git
git pull upstream main
git checkout -b your-branch
git commit -m "commit message describing change"
git push origin your-branch
8. Create a Pull Request. Go to your Fork on GitHub and create a pull request to this repo on GitHub. Then fill in the PR submission form before submitting
By contributing to this repo, you agree that your contributions will be licensed under its MIT License.