UNPKG
common-data-structure
Version:
latest (0.12.0)
0.12.0
0.11.0
0.10.0
0.9.0
0.8.0
0.7.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.5
0.3.4
0.3.3
0.2.3
0.2.2
0.1.2
0.1.1
0.1.0
一些javaScript常用数据结构
github.com/LuHong-HL/data-structure
LuHong-HL/data-structure
common-data-structure
/
src
/
models
/
value-pair.js
13 lines
(12 loc)
•
184 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * 键值对 */
export
class
ValuePair
{
constructor
(
key, value
) {
this
.
key
= key
this
.
value
= value }
toString
(
) {
return
`[#
${
this
.key}
:
${
this
.value}
]`
} }