In this article we will look at some useful JavaScript tips and tricks.
This reloads the current document and works same as the reload button in your browser.This can be really handy when implementing a refresh button in the user interfaces.
const btnRefresh = document.querySelector("button");
btnRefresh.addEventListener("click", () => {
location.reload();
});
CSS styles applied using javascript are applied as inline styles.
<h1>Cakes & Bakes π§</h1>
document.querySelector('h1').style.color = "coral"
<h1 style="color: coral;"> // HTML Element
Implicit conversion of values from one data type to another data type is named as type coercion i.e strings to numbers
.
In case of plus operator values are concatenated and converted into strings.
console.log("2" * 10); // output: 20
console.log(10 - "2"); // output: 8
console.log(2 + "2"); // output: '22'
if you are having hard time figuring out which element is currently being focused use document.activeElement
it returns the current focused element.
console.log(document.activeElement);
In JavaScript there are seven primitive data types.
number, string, boolean, undefined, null, BigInt, Symbol;
Remainder operator %
simply returns the remainder of a division i.e 5 % 2 = 1
.You can use remainder operator to check either a number is even or odd
const number = 10;
console.log(number % 2 === 0 ? "Even β€οΈ" : "Odd π§‘");
// output: Even β€οΈ
Set document.designMode to on to make your webpage content editable.
document.designMode = "on";
To check either a HTML element contains a specific class or not.
<h1 class="title">Page title</h1>
document.querySelector("h1").classList.contains("title");
document.querySelector("h1").classList.contains("subtitle");
// output: true
// output: false
Variables declared with var are hoisted but returns undefined.
console.log(a);
var a = 10;
// output: undefined
Remove methods allows you to remove an HTML from the document.
<h1>Page title βοΈ</h1>
const pageTitle = document.querySelector("h1");
pageTitle.remove();
Eval is a builtin Javascript function which allows you to evaluate the given values i.e strings, numbers.
This can be used to build a simple calculator like this.
eval(2 * "5");
// output: 10
eval(12 / "2");
// output: 6
The typeof operator allows you to check type of a value.
console.log(typeof 42);
// output: "number"
console.log(typeof "markdown β‘");
// output: "string"
console.log(typeof true);
// output: "boolean"
The replace method allows you to replace the very first instance of a string entity with the specified entity likewise replace we also have replaceAll that replaces all the instances.
const string = "cake";
string.replace("c", "b");
// output: 'bake'
To check either a string or array contains a specific value or not. The method returns a boolean.
const string = "JavaScript";
string.includes("J"); // output: true
const hearts = ["π§‘", "π", "π€"];
console.log(hearts.includes("π§‘")); // output: true
console.log(hearts.includes("β€οΈ")); // output: false
The document.URL returns the document URL/location as a string.
console.log(document.URL);
// output: "https://developer.mozilla.org/en-US/"
Likewise arrays string indexes also start with 0.
let string = "cake";
string[0]; // output: 'c'
string[1]; // output: 'a'
Set default parameters for functions using assignment operator in case no argument is passed the function will return the default values.
I wrote this article to cover this topic in detail.
function printName(name = "Anonymous") {
console.log(name);
}
printName(); // output: "Anonymous"
Hope you enjoyed reading this article β€οΈ Next up I will be building an open source portfolio template that anyone can use for free π.
Iβm officially looking for a junior/entry-level front-end developer position. Please feel free to drop a comment below if youβre hiring, or to share opportunities. My portfolio.
Thanks and Happy coding!
β back