What's the difference between `./` and `../` in relative paths
In the file system, relative path means path relative to your current working directory.
The symbols ./ and ../ are used to represent the current directory and parent directory, respectively.
Here's the difference between the two:
./ refers to the c...
balveersinghrao.hashnode.dev1 min read