Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/TheAlgorithms/JavaScript
/ addVertex
Method
addVertex
Data-Structures/Graph/Graph.js:6–8 ·
view source on GitHub ↗
(vertex)
Source
from the content-addressed store, hash-verified
4
}
5
6
addVertex(vertex) {
7
this.adjacencyMap[vertex] = []
8
}
9
10
containsVertex(vertex) {
11
return
typeof this.adjacencyMap[vertex] !==
'undefined'
Callers
3
example
Function · 0.95
Graph3.test.js
File · 0.45
Graph2.test.js
File · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected