MEMajid Eltayebinblog.majidz.com·Jan 26, 2024 · 1 min read.toBe(true) or .toBeTruthy()I was reviewing a feature on GitHub and noticed my colleague sometimes used .toBe(true) and other times .toBeTruthy(). This got me wondering, are they actually different? After a quick search, I found out they are – and it's all in their names 😅. In...01N
MEMajid Eltayebinblog.majidz.com·Apr 4, 2023 · 4 min readEffortless PDF Generation in VueHave you ever wondered if you can download an HTML table as a PDF file? Recently, while working on a side project using Nuxt3, I ran into this same question. I needed to generate a table of data and make it shareable with others. I found many librari...02HN
MEMajid Eltayebinblog.majidz.com·Nov 9, 2022 · 1 min readCSS visible propertiesIn chrome devtools 108, a new feature have been released, which helps you know if there is an obsolete css property, let’s take an example In this element header we set the position: static , this position is preventing element from moving away not l...00