2020-08-29 The implementation of irregular shapes of html + glowing neon seat effect of css + various arrays of JS + coverage of soft skills

2020-08-29 Source of topic: http://www.h-camel.com/index.html

[html] What are the ways to make an irregular shape?

The realization of various shapes, border-top border-right border-bottom border-left

https://www.cnblogs.com/liangxiaofeng/p/5936760.html

[css] Use css to achieve flashing neon text effects

Text effect realized by css

https://blog.csdn.net/w178191520/article/details/84872195

[js] Please tell me the definition and difference of index array, associative array, static array and dynamic array in JS

1. Judging from the subscript of the array, it is divided into index array and associative array.

Index array, var arr1 = [1, 2, 3]; arr1[0]; Integer number, starting from 0.

Associative array, var arr2 = []; arr2["one"] = 1; arr2["two"] = 2; Access array elements without numbers.

2. From the storage of data, it is divided into static array (fixed length) and dynamic array (length is not fixed).

[Soft skills] Tell me about your understanding of coverage, what problem does it solve?

Front-end code coverage https://testerhome.com/topics/24122

Guess you like

Origin blog.csdn.net/vampire10086/article/details/108579669