We are releasing a premium WordPress plugin

Best WordPress shortcodes plugin

At Real Big Marketing we have been using WordPress to help our clients achieve their goals for years. Over the course of those years we’ve gained experience with the platform and have participated in the WordPress community in a big way. From publishing free plugins, to contributing patches to Meta trac, to co-organizing a meetup and a … Read more

How to Use Console.log in Javascript

The Javascript command console.log allow us to “Print Out” to the console.  When you need to see what the computer is processing you have to ask it to show you.  The correct way to write the code is like this: console.log(“show everything between these parentheses”) This command will log to the console anything within the … Read more

How to Create a Comment in Javascript

Javascript’s comment symbol is the dual // at the beginning of the line. Comments become helpful when writing Javascript. Using the comment function forces the computer to ignore or skip everything else on the line. Comments let us separate sections of the code, write reminders and notes, annotate where snippets came from, and let us … Read more