Showing posts with label error. Show all posts
Showing posts with label error. Show all posts

JavaScript - Reserved Words

Some words are reserved in JavaScript and cannot be used as variable names.  Some common examples are:

  • case
  • catch
  • for
  • let
  • private
  • this
  • with
  • in 
  • do
 Using these words as variables (var) will present you with an error for your code.

Python Pyperclip

Problems installing pyperclip module for python.  Not recognised as a module. 

Not able to install it from command line.  Resolved by running pip install pyperclip by running command line as administrator.  (Right-click on command line icon in start menu and select "run as administrator").


Web Development: Organizing Files and Folders

When you begin to build your website, it's a very clever idea to organize  your files and folders efficiently. You should have: A ...