question about netstat

For FreeBSD I use this command to determine what ports are listenning

netstat -an | grep LISTEN

is there another way, perhaps another command?

lsof -i
sockstat -l

the man command is your friend.

sockstat -4 -l -P tcp

for listing only TCP 4 port listen .