Search
Cardano Price Analysis: Trends are Bullish, Expected to Fetch Great Returns by the EOY
3.6.2019
After the 1.5 Shelly update, Cardano saw some good trading volume. The community is active, and developers of the coin have a good reputation when it comes to engagement with the users. ADA Coin Current Statistics: Cardano vs USD price is at 0.09255 USD, On June 03, at UTC 08:36. Against Bitcoin...
Study Suggests Ticker Readability Positively Impacts a Cryptocurrency's Returns
30.5.2019
A new small-scale study ostensibly indicates that the readability of a cryptocurrency’s ticker symbol positively correlates with higher returns in the first week of listing
IOTA (MIOTA) Price Analysis: Fundamentally Keen IOTA Is A Fantastic Investment For Skyrocketing Returns
25.5.2019
IOTA is one of the few digital assets listed during the cryptocurrency boom of 2017. It is a much-undervalued altcoin. Though many predict the further downward trend for IOTA, it is one of the safe and best investments for the long term. It is because of the following fundamental and technical...
Steem (STEEM) Price Analysis: Buy Steem At A Near All-time Low Price For Skyrocketing Returns
23.5.2019
Steem a social media blockchain had seen a lot of ups and downs from its listing in March 2016. Within four months of its listing on July 20th, it touched 4.34 USD from its first trading prices in April at 0.70 USD. Then it reached its all-time low of 0.69 on March 10th, 2017. It …
The post...
Binance Launchpad Stirs the Market, as its Coins Hit Returns of 620% and 787%
20.5.2019
Being the largest crypto exchange firm, Binance is quite used to with the scenario of constantly creating the news ripples. The exchange is witnessing the roller coaster ride kind of journey since the starting of this year. The most recent shocking news in the crypto space so far was the hacking...
Ethereum (ETH) Price Analysis: Ethereum’s Decentralization Contention Returns; Bullish Medium-Term Outlook
20.5.2019
Allegations of centralization have been made against Ethereum. The 2019 prediction target continues with no change at $1000. In today’s world of cryptocurrency, decentralization is the biggest factor which has the potential to make it or break it. The whole idea of cryptocurrency is based on this....
Blockchain Live Returns to London Olympia, 25th September 2019
11.5.2019
London, UK – Taking blockchain mainstream, Blockchain Live is back and will be returning to London Olympia on 25 th September as a festival of blockchain education. A one-day event, packed with engaging, thought-provoking and quality content, this year Blockchain Live will be moving away from...
Get a CSS Custom Property Value with JavaScript
11.4.2019
Here’s a neat trick from Andy Bell where he uses CSS Custom Properties to check if a particular CSS feature is supported by using JavaScript.
Basically, he's using the ability CSS has to check for browser support on a particular property, setting a custom property that returns a value of either...
JavaScript Glossary: String lastIndexOf()
27.3.2019
Basics
The lastIndexOf() method returns the last position within a String object which an element can be found. The search starts from the last position of the String object.
JavaScript Glossary: String match()
27.3.2019
Basics
This method is a called against a regular expression and returns the matching values in the string. The return value is an array containing the matched values. If no matches are fo
JavaScript Glossary: String startsWith()
27.3.2019
Basics
The startsWith method takes a string parameter and checks if the calling string starts with the value provided. It returns a Boolean value, true
JavaScript Glossary: String length
26.3.2019
Basics
The length property of the String object returns the number of code points in a string object. It indicates the length of the string
An Illustrated (and Musical) Guide to Map, Reduce, and Filter Array Methods
26.3.2019
Map, reduce, and filter are three very useful array methods in JavaScript that give developers a ton of power in a short amount of space. Let’s jump right into how you can leverage (and remember how to use!) these super handy methods.
Array.map()
Array.map() updates each individual value in...
JavaScript Glossary: String trim()
25.3.2019
Basics
This method removes whitespaces from the start and end of the calling string. It removes spaces, tabs, no break spaces etc. It returns a new string stripped of whitespaces from both
JavaScript Glossary: String indexOf()
25.3.2019
Basics
This method checks for the first appearance of a provided string argument within the calling string and returns the index. It returns -1 if the string argument can’t be
JavaScript Glossary: String includes()
19.3.2019
Basics
The includes method checks a provided string against the calling String object, it returns true if the calling String object contains the provided string a
Crypto Tax Season: What you need to know
20.2.2019
The basics to keep in mind when filing your tax returns involving cryptocurrencies this year. From the CMC Editorial Desk: It’s… taaaax season. Before you panic, what do you need to know as you’re filing returns on your crypto? Find […]
The post Crypto Tax Season: What...
JavaScript Glossary: String concat()
17.2.2019
Basics
This method is used to join the calling string and the provided string arguments. It returns a new String object containing the calling string and the provided arguments . If no arg
JavaScript Glossary: Array unshift() Method
17.2.2019
Basics
The unshift array method appends a number of values to the start of a given array. It then returns the new length of the array. This method can take a number of argumen
Avoiding those dang cannot read property of undefined errors
13.2.2019
Uncaught TypeError: Cannot read property 'foo' of undefined. The dreaded error we all hit at some point in JavaScript development. Could be an empty state from an API that returns differently than you expected. Could be something else. We don’t know because the error itself is so general...