摘要: http://www.ruanyifeng.com/blog/2020/12/weekly-issue-140.html Vue.js 是主流的前端框架,面试前端岗位时,经常会遇到这方面的题目。 下面就是一些常见的面试问题。 [基础类问题] [扩展类问题] 上面这些问题是由腾讯课堂101认证机构 金 阅读全文
posted @ 2020-12-31 23:44 ChuckLu 阅读(155) 评论(0) 推荐(0)
摘要: Match exact string What is the regular expression (in JavaScript if it matters) to only match if the text is an exact match? That is, there should be 阅读全文
posted @ 2020-12-31 16:42 ChuckLu 阅读(104) 评论(0) 推荐(0)
摘要: regex.test V.S. string.match to know if a string matches a regular expression Many times I'm using the string match function to know if a string match 阅读全文
posted @ 2020-12-31 16:33 ChuckLu 阅读(130) 评论(0) 推荐(0)
摘要: What is the meaning of the 'g' flag in regular expressions? g is for global search. Meaning it'll match all occurrences. You'll usually also see i whi 阅读全文
posted @ 2020-12-31 16:12 ChuckLu 阅读(114) 评论(0) 推荐(0)
摘要: scss // stylelint-disable declaration-no-important // Width and height @each $prop, $abbrev in (width: w, height: h) { @each $size, $length in $sizes 阅读全文
posted @ 2020-12-31 11:31 ChuckLu 阅读(101) 评论(0) 推荐(0)
摘要: How to override !important? have created a custom style sheet that overrides the original CSS for my Wordpress template. However, on my calendar page, 阅读全文
posted @ 2020-12-31 11:19 ChuckLu 阅读(111) 评论(0) 推荐(0)
摘要: What does !important mean in CSS? What does !important mean in CSS? Is it available in CSS 2? CSS 3? Where is it supported? All modern browsers? 回答1 I 阅读全文
posted @ 2020-12-31 10:50 ChuckLu 阅读(147) 评论(0) 推荐(0)