InterviewSolution
Saved Bookmarks
| 1. |
What are channels and how can you use them in Golang? |
|
Answer» In GOLANG, a CHANNEL is a communication OBJECT which uses goroutines to communicate with each other. Technically, it is a DATA TRANSFER pipe in which data can be transferred into or read from. |
|