- JavaScript Cheat Sheet by DaveChild
- Regular Expressions Syntax
- Pattern Modifiers
- JavaScript RegExp Object
- JavaScript Event Handlers
- JavaScript Arrays
- JavaScript Numbers and Maths
- JavaScript Booleans
- JavaScript Dates
- JavaScript Strings
- JavaScript Functions
- Download the JavaScript Cheat Sheet
- Created By
- Metadata
- Favourited By
- Comments
- JavaScript Cheat Sheet + PDF
- JavaScript: What The Heck is That?
- The Greatest JavaScript Cheat Sheet This Side of The Internet
- Frequently Asked Questions About JavaScript
- The Advantages (And Limitations) Of JavaScript
- The Advantages of JavaScript
- JavaScript’s Limitation
- Final Thoughts
- Recent Blogging Help
- Lead the Way: How Do I Find Medicare Leads?
- How to Monetize a Travel Blog
- How to Use TikTok to Promote Your Personal Brand
- More Recent Blogging Tips
- How Can You Make Money With a Blog?
- What Is the Average Cost of Website Design? Your Variables and Options Today
- Your Cash, Your Cash: A Guide to YouTube Monetization
- Be Very Afraid: 3 Identity Theft Facts You Should Be Aware Of
- How to Start Your Own Fashion Blog
- Helpful Tips for Bloggers
- Blogging Guides
- Popular Blogging Tips
- 150+ Blog Post Ideas
- Like a Boss: The Top Business Podcasts You Won’t Want to Miss
- Link Building Guide for 2020 & Beyond
- List of Best Free Blogging Sites & Platforms
- How to Make a Website
- The 10 Greatest Blog & Domain Name Generators
- Make An Impression With These 15 Gut-Bustingly Funny Business Card Ideas
- Living the Dream: A No Nonsense Guide on How to Work From Home
- How to Start a Tech Blog: 5 Tips You Haven’t Heard Before
- About Us
JavaScript Cheat Sheet by DaveChild
JavaScript methods and functions, a guide to regular expressions and the XMLHttpRequest object.
Regular Expressions Syntax
Pattern Modifiers
JavaScript RegExp Object
JavaScript Event Handlers
JavaScript Arrays
JavaScript Numbers and Maths
JavaScript Booleans
JavaScript Dates
JavaScript Strings
JavaScript Functions
Download the JavaScript Cheat Sheet
PDF (recommended)
Alternative Downloads
Your Download Will Begin Automatically in 12 Seconds.
Created By
Metadata
- Languages: English
- Published: 19th October, 2011
- Last Updated: 11th May, 2016
- Rated: 5 out of 5 stars based on 131 ratings
Favourited By
Comments
Piotrek 20:16 28 Feb 12
pdf isjunk 15:22 6 Aug 12
When you hit the PDF button, it chops off the bottom of the page and has a second page with your face and half of the credits on it. comical fail. Thought you should know.
Murali Prashanth N 08:42 16 Feb 13
. 08:43 16 Feb 13
Dave Lampton 17:16 26 Mar 13
The event handlers should be all lowercase.
santsoh suryawanshi 17:44 17 Feb 14
these PDF make easy to create web site ,present and validate as well.
there is no need to open any book or google for any tag.
Thnk you dave.
Er1c Nevertells 19:45 31 Oct 14
This is a messed up ripoff of other quality quick references, with your mug slapped in it and a shameless plug to your site.
I published the first version of this cheat sheet on ILoveJackDaniels.com in 2005. I don’t think there were many others around then, if any. It’s been through a few changes in that time, of course, but it’s basically the same.
James 17:35 19 Oct 15
Thanks Dave, with all the criticism and few thanks its a wonder people try to help each other. Good work.
pppandit 17:35 19 Oct 15
Michael Pohoreski 16:09 16 Sep 16
Good starting point but still has a few errors (as of Jan 2016) :-/
1. Dates are not alphabetized. i.e. getYear, getSeconds, are out of order
2. Dates functions are missing parenthesis. i.e. getYear()
3. Missing Date.now()
JavaScript Cheat Sheet + PDF
JavaScript. We’ve all heard of it, but understanding anything beyond the name is not a simple task.
Start your blog today with a special OnBlastBlog discount from Bluehost . Only $2.95/mo with a free domain name and email address. You can’t beat this offer!
It’s time to brush up on your JavaScript.
Since you’re here to learn how to create a website or make a blog from scratch, I’m going to show you what this Javascript programming language is all about, but more than that, I’m going to give you complete and unrestricted access to a cheat sheet that will give you the edge you’ve been looking for.
Ready? Here’s what we’re covering:
- JavaScript: What The Heck is That?
- The Greatest JavaScript Cheat Sheet This Side of The Internet
- Frequently Asked Questions About JavaScript
- The Power (and Limitations) Of JavaScript
JavaScript: What The Heck is That?
JavaScript is a programming language that’s used to add interactivity to web pages. It runs on the computer of your visitors and doesn’t require anything annoying like constant downloads to work properly. Examples are things like polls and quizzes.
Here are some quick facts about JavaScript:
- It’s a lightweight, interpreted programming language
- Designed for creating network-centric applications
- Complementary to and integrated with Java and HTML
- Open and cross-platform
- Originally known as LiveScript, but Netscape changed it to JavaScript
The Greatest JavaScript Cheat Sheet This Side of The Internet
Want to embed this cheat sheet?
Copy the snippet below & paste right into your text editor to share the love ❤
Frequently Asked Questions About JavaScript
Are JavaScript and Java the same thing?
Something we need to get out of the way right now, is that Java and JavaScript are not the same thing. The names are similar, yes, but that’s about the only similarity.
Ready to boost traffic with a mailing list?
Constant Contact has you covered with the tools and expertise you need to get started. Check out their free trial today!
Now that we’ve covered that small, but important detail, we can dig deeper into JavaScript as a whole.
What do users need to utilize JavaScript on websites they visit?
This programming language is built into most major web browsers like Internet Explorer, Firefox, and Safari.
Users who visit your site need to have JavaScript support on their browsers, and it must be enabled (it is by default), for everything you’ve written to function properly.
Can I only use JavaScript if I know how to write it?
Here’s an interesting fact:
You don’t need an intimate knowledge of JavaScript to use it!
That’s right, there are plenty of pre-written JavaScripts that people have made available for new users to just plug right into their web pages. You just have to know where to place the scripts, and you’re good to go.
Is there a special program for writing JavaScript?
Now, if you’re interested in writing JavaScript, you’ll just need a plain text editor, like Notepad to get started. If you’re using an editor to write your code, the job gets even easier, because these programs will color-code the text to help you find mistakes quicker.
Can I use HTML instead of JavaScript?
No, JavaScript and HTML are two different beasts, but you can check out our HTML5 cheat sheet if you’re in need of help with that programming language. You see, HTML is used as a markup language for defining elements of static web pages, while JavaScript is a programming language that’s used for dynamic tasks.
Can I use PHP or some other server-side language instead?
This is a tough one to answer because it is possible. You can only use an alternate language if it runs before the page loads. Anything that runs after the page has loaded must be JavaScript. It’s the only language supported by all web browsers that supports client-side scripting.
Does JavaScript go in the same file as HTML?
You can do it this way, but it’s more easily used across multiple pages if you place it in separate files. You can use a .JS extension to help differentiate them. You can link your JavaScript to HTML by inserting a tag.
You can add this same script to several pages by using the correct tags into each of the pages to establish a link.
What is Client-side JavaScript?
Client-side JavaScript is the most commonly used form of this language. The script should be added to, or referenced in HTML documents for the code to be properly understood and interpreted by the browser.
A web page can be made using static HTML but can include programs that interact with users and create dynamic HTML content. The client-side JavaScript mechanism allows you to do a lot more than you could with traditional CGI server-side scripts.
For example, JavaScript can be used to check if the user has entered a valid email address in a form field. Handy stuff!
The Advantages (And Limitations) Of JavaScript
JavaScript has a lot going for it, but like anything, it’s not perfect. Let’s take a look at what it does really well, and where you may need something else to get the job done. Understanding these limitations is key to properly utilizing the language.
The Advantages of JavaScript
- Less Server Interaction – You can ensure that user input is valid before sending it to the server. This saves traffic and reduces the load on the server as a whole.
- Immediate Feedback – Users can immediately find out if they’ve missed an entry, as opposed to waiting for a page to load.
- More Interactivity – You can use JavaScript to create interfaces that react to users when they hover over them with a mouse or trigger them via a keyboard.
- Richer User Interface – You can use JavaScript to include items like drag-and-drop components and sliders to improve the quality of your interfaces.
As you can see, JavaScript does a lot of things really well, but let’s look at the limitations before we part. These are some of the features that some people may find lacking.
JavaScript’s Limitation
- Client-side JavaScript doesn’t allow reading or writing of files. This was chosen for security reasons.
- JavaScript cannot be used for networking applications because there’s no support available for this.
- JavaScript doesn’t have support for multi-threading or multiprocessor capabilities.
Final Thoughts
JavaScript is a powerful tool for making your web pages more interactive, engaging, and better suited to the user experience. With this knowledge and cheat sheet, you’ll have everything you need to create dynamic and exciting web pages.
How do you use JavaScript? Let us know in the comments!
Create That Stunning Blog Today with On Blast Blog
On Blast Blog tutorials have helped over 22,700 people use WordPress to make a blog and create a website. If you have any questions or need any help, On Blast Blog is here for you at anytime!
OnBlastBlog may receive a small referral fee from companies that we suggest in our guides, but we only recommend web hosts & companies that we ❤ and use ourselves.
Recent Blogging Help
Lead the Way: How Do I Find Medicare Leads?
Are you struggling to draw in aged Medicare leads this year? You’re not alone. In fact, about 65% of businesses …
How to Monetize a Travel Blog
Do you ever dream of traveling the world while making money at the same time? Would your perfect life consist …
How to Use TikTok to Promote Your Personal Brand
TikTok’s taking the world by storm. Heck, this newcomer to the world of social media had been downloaded a staggering …
More Recent Blogging Tips
How Can You Make Money With a Blog?
If you’re a writer with a blog, then you understand the amount of craftsmanship that goes into each article. Since …
What Is the Average Cost of Website Design? Your Variables and Options Today
At last count, 1.8 billion websites were online. That number grows every day and is telling of the popularity the …
Your Cash, Your Cash: A Guide to YouTube Monetization
Did you know that with close to 7.04 billion views, the catchy “baby shark” video has now broken the world …
Be Very Afraid: 3 Identity Theft Facts You Should Be Aware Of
Approximately 2 in 5 Americans have either been a victim of identity theft or know someone who has. Identity theft …
How to Start Your Own Fashion Blog
The fashion industry generates over $2 trillion worldwide annually. If you are trying to make a name for yourself in …
Helpful Tips for Bloggers
Blogging Guides
- How to Start a Blog
- Best Free Blogging Sites
- How to Make a Website
- Why Blog? 50+ Reasons to Blog
- What to Know Before Starting a Blog
- Blogging Best Practices
- Blog Post Ideas
- How to Make Money Blogging
- How to Design the Perfect Website
- How to Promote Your Blog
- How to Write the Perfect Blog Post
- Top WordPress SEO Tips for Your Blog
- Why Free Websites are Not Good