Search
JavaScript Glossary: Array .every() Method
6.2.2019
Basics
The every method checks that each element in an array passes a set test. This method will return true if all the elements pass the set. Once an element tha
Using React Portals to Render Children Outside the DOM Hierarchy
15.1.2019
Say we need to render a child element into a React application. Easy right? That child is mounted to the nearest DOM element and rendered inside of it as a result.
render() {
return (
<div>
// Child to render inside of the div
</div>
);
}
But! What if we want...
Script & Style Show: Episode 13: Decentralized Identity with Daniel Buchner
29.6.2018
In this episode: David and Todd return from travels to San Francisco, Oslo, and Iceland, Todd reveals he’s a new (dog) father, and they welcome guest Daniel Buchner, a Senior PM for Microsoft’s Decentralized Identity team. Daniel shares his knowledge about blockchain and crypto, then...
What does the ‘h’ stand for in Vue’s render method?
30.5.2018
If you’ve been working with Vue for a while, you may have come across this way of rendering your app — this is the default in the latest version of the CLI, in main.js:
new Vue({
render: h => h(App)
}).$mount('#app')
Or, if you’re using a render function, possibly to take advantage...
Add Loading Indicators to Your Vue.js Application
16.4.2018
Loading indicators improve UX (user experience) in any application web or mobile. It tells the user that an action is being carried and a result will return shortly.
In web applications, the